天天看点

Vuex——命名空间导致错误[unknown action type:XXX]解决方案

当我们在组件中需要调用vuex中actions中的方法时,因为没有加上模块名而报错。

报错信息:

Vuex——命名空间导致错误[unknown action type:XXX]解决方案
使用this.$store.commit(‘app/changeNum’)就好了,注意要加上模块名, 数据量多时,不建议注释掉 namespaced: true。      

继续阅读