Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.87 KB

README.md

File metadata and controls

52 lines (39 loc) · 1.87 KB

logo.png

Coverage Status Build Status Coverage Status

Minified size Downloads Dependencies

Dynamically creates an interface of objects to easily communicate with vuex


Turning this:

this.$store.dispatch('module/action', { data });

this.$store.commit(Types.mutations.SET_FIRST_THING, 10);

this.$store.getters[TYPES.getters.getSomething]

Into this:

dispatches.module.action({ data });

commits.module.setFirstThing(10);

getters.module.getSomething();

No more constants, no more strings


Getting Started