VUEX报错 [vuex] Do not mutate vuex store state outside mutation handlers
Posted ybixian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUEX报错 [vuex] Do not mutate vuex store state outside mutation handlers相关的知识,希望对你有一定的参考价值。
数组
错误的写法:let listData= state.playList; // 数组深拷贝,VUEX就报错
正确的写法:let listDate= state.playList.slice(); /*不能直接操作state里面的属性,但是可以创建一个副本*/
对象
错误的写法:let listData= state.playList; // 对象深拷贝,VUEX就报错
正确的写法:let listDate= Object.assign({}, state.playList); /*不能直接操作state里面的属性,但是可以创建一个副本*/
以上是关于VUEX报错 [vuex] Do not mutate vuex store state outside mutation handlers的主要内容,如果未能解决你的问题,请参考以下文章
vuex 中操作数组,报错 Do not mutate vuex store state outside mutation handlers
mutation中修改state中的状态值,却报[vuex] do not mutate vuex store state outside mutation handlers.
使用vuex报错“__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor”
vuex 报错 hook.flushStoreModules is not a function 偶发性
vuex报错:Property or method “$store“ is not defined on the instance but referenced during render. Make
Vue报错:This dependency was not found: vuex in ./node_modules/babel-loader/lib