总结
关于Mutations中报错。
正确的调用:
在store中创建了多模块MenuStore,看到有说吧this.$store.commit('selectMenu’)改成this.$store.commit('模块名/selectMenu’),但不对,原来是MenuStore.js中不应该像在index.js中再new一个store
另:Mutations里的state不写this.state(写了this就是指mutations外的单一状态树state),直接写state
实现