how to get input value in vuejs state mutations code example
Example: v-switch vuex store
import { mapState } from "vuex";
computed: {
...mapState(["settings"]),
computedProperty: {
get() {
return this.settings.valueInState;
},
set(valuePassedThrough) { //the value is passed through the v-model automatically
this.$store.dispatch(`storeAction`, valuePassedThrough);
}
}
}