vuex的一个坑
Posted 仔行天下
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuex的一个坑相关的知识,希望对你有一定的参考价值。
1 error in callback for watcher "function (){ return this._data.$$state }"
用深拷贝解决
2 接口依赖:
var that=this;
this.getBeixuanList(Object.assign(JSON.parse(JSON.stringify(this.mpramas)),{fenpin:fenpin}))
.then(function(res){
that.InitData(that.mpramas);
console.log("res*********************")
})
.catch(function(err){
console.log("err**************************")
})
以上是关于vuex的一个坑的主要内容,如果未能解决你的问题,请参考以下文章
踩坑记录-nuxt引入vuex报错store/index.js should export a method that returns a Vuex instance.