[Vuejs]-Vuex State Updated only in local scope of mutation

0👍

Try to use Vue.set in your mutation.

For example:

state: {
    isInteractionEnabled: false
},
mutations: {
    SWITCH_INTERACTION: (state, {status}) => Vue.set(state, 'isInteractionEnabled', status)
},

Leave a comment