解决 Vuex 报错 [vuex] unknown mutation type: XXXX
页面中这么存值,结果报错了 this.$store.commit('SET_FORM', this.ruleForm)解决方法:可能项目中 store 是分模块写的,所以在调用模块里的办法时,要在办法名前加上模块名更改为:this.$store.commit('user/SET_FORM', this.ruleForm)...
·
页面中这么存值,结果报错了 this.$store.commit('SET_FORM', this.ruleForm)
解决方法:可能项目中 store 是分模块写的,所以在调用模块里的办法时,要在办法名前加上模块名
更改为:this.$store.commit('user/SET_FORM', this.ruleForm)
更多推荐
已为社区贡献4条内容
所有评论(0)