开启严格模式,仅需在创建 store 的时候传入strict: true
const store = new Vuex.Store({ state, strict:true//开启严格模式后,只能通过mutation来改变状态(不支持异步)否则会报错 })
严格模式下,不是有mutation函数引起的状态变化都会抛出错误
注意:发布环境下不要开启严格模式
严格模式会深度监测状态树来检测不合规的状态变化,造成不必要的性能损失