vuex 需要 全局挂载 Vue.prototype.$store 吗?
官方:https://vuex.vuejs.org/zh/guide/
有说明:
为了在 Vue 组件中访问 this.$store property,你需要为 Vue 实例提供创建好的 store。Vuex 提供了一个从根组件向所有子组件,以 store 选项的方式“注入”该 store 的机制:
所以已经注入,不需要用 Vue.prototype.$store = store 重复挂载
直接使用 this.$store
methods: { increment() { this.$store.commit('increment') console.log(this.$store.state.count) } }
.