代码:
computed: mapState({
results: function (state) {
// 不执行到这了
console.log('map', state.cardData);
return state.cardData;
},
isloadingComplete: function (state) {
return state.isloadingComplete;
},
busy: function (state) {
return state.busy;
}
完整代码:https://github.com/TIGERB/eas...
求破。
THX~
你的源码上面 data已经有一个results了.computed再来一个results ??