vue报错: vuex 访问报错“TypeError: Cannot read property ‘setAll‘ of undefined“

官方文档: 链接

报错: TypeError: Cannot read property ‘setAll’ of undefined"

vue报错: vuex 访问报错“TypeError: Cannot read property ‘setAll‘ of undefined“_第1张图片
//访问不到数据还报错了

解决方式:
this.$store.commit(‘setAll’,‘参数’)才能访问mutations中定义的方法,直接访问不行
vue报错: vuex 访问报错“TypeError: Cannot read property ‘setAll‘ of undefined“_第2张图片
vue报错: vuex 访问报错“TypeError: Cannot read property ‘setAll‘ of undefined“_第3张图片

你可能感兴趣的:(vue,vuex)