0๐
โ
My error is in the "store/modules/tables.js"
I forgot to add {commit} argument..
before
const actions = {
setActiveTableId (id) {
this.commit('SET_ACTIVE_TABLE', id)
}
}
after
const actions = {
setActiveTableId ({commit},id) {
this.commit('SET_ACTIVE_TABLE', id)
}
}
Thanks all
Source:stackexchange.com