命名空间属性为false时,调用子模块的方法不需要写方法的路径
this.$store.commit('changeNickName')
命名空间属性为true时,调用子模块的mutations方法需要写方法的路径,我的子模块名为user
this.$store.commit('user/changeNickName')
否则会报错找不到mutations方法
[vuex] unknown mutation type: 函数名
命名空间属性为false时,调用子模块的方法不需要写方法的路径
this.$store.commit('changeNickName')
命名空间属性为true时,调用子模块的mutations方法需要写方法的路径,我的子模块名为user
this.$store.commit('user/changeNickName')
否则会报错找不到mutations方法
[vuex] unknown mutation type: 函数名