vuex-objectify
v1.0.7
Published
Creating an interface to communicate with the vuex store
Downloads
19
Maintainers
Readme
this.$store.dispatch('module/action', { data });
this.$store.commit(Types.mutations.SET_FIRST_THING, 10);
this.$store.getters[TYPES.getters.getSomething]
dispatches.module.action({ data });
commits.module.setFirstThing(10);
getters.module.getSomething();