Vuex
一只勤劳的二哈
If not now, when?If not me, who?
展开
-
Vuex_严格模式
Vuex严格模式开启严格模式,仅需在创建 store 的时候传入 strict: true:const store = new Vuex.Store({ // ... strict: true})在严格模式下,无论何时发生了状态变更且不是由 mutation 函数引起的,将会抛出错误。这能保证所有的状态变更都能被调试工具跟踪到。开发环境与发布环境不要在发布环境下启用严格模式!严格模式会深度监测状态树来检测不合规的状态变更,要确保在发布环境下关闭严格模式,以避免性能损失。const s原创 2020-05-28 20:24:40 · 499 阅读 · 0 评论 -
Vuex_Module模块
Vuex_Module由于使用单一状态树,应用的所有状态会集中到一个比较大的对象。当应用变得非常复杂时,store 对象就有可能变得相当臃肿。为了解决以上问题,Vuex 允许我们将 store 分割成模块(module)。每个模块拥有自己的 state、mutation、action、getter。modules: { a, b}获取 state:this.$store.state.moduleName.xxx获取 getter:this.$store.getters.xxx提交原创 2020-05-28 20:22:58 · 166 阅读 · 0 评论