标签:pat map state 开启 扁平化 commit 命名 store 灵活
vuex核心概念
State——this.$store.state.xxx——mapState 取值
Getter——this.$store.getters.xxx——mapGetters 取值
Mutation——this.$.store.commit("xxx")——mapMutations赋值
Action——this.$store.dispatch("xxx")——mapActions赋值
Module
开启命名空间 namespaced:true
嵌套模块不要过深,尽量扁平化
灵活应用createNamespacedHelpers
标签:pat map state 开启 扁平化 commit 命名 store 灵活
原文地址:https://www.cnblogs.com/lynna/p/11927478.html