我如何从computedVue.js 中返回一个数组?
我收到此错误:
“currentData”计算属性 vue/no-side-effects-in-computed-properties 中的错误意外副作用...
我的代码如下:
export default {
computed: {
currentData: function() {
this.series[0].data = [1, 2, 3, 4, 5, 6, 7, 8];
return this.series[0].data;
}
}
};
<template>
<div>
{{currentData}}
</div>
</template>
FFIVE
相关分类