0👍
Try to use Vue.set in your mutation.
For example:
state: {
isInteractionEnabled: false
},
mutations: {
SWITCH_INTERACTION: (state, {status}) => Vue.set(state, 'isInteractionEnabled', status)
},
- [Vuejs]-Vue multiselect not being selected when tracking by _id in edit mode
- [Vuejs]-Nginx: try_files's last value does not work when root is variable
Source:stackexchange.com