0👍
You can use the Vue.set()
function.
In your mutation method do something like:
Vue.set(state, 'data', payload);
Source:stackexchange.com
0👍
You can use the Vue.set()
function.
In your mutation method do something like:
Vue.set(state, 'data', payload);