Toko V-Switch Vuex

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);
      }
    }
}
Pushy Pants