想在computed中处理一些业务逻辑,但是ESlint提示不能在computed中给data中的变量重新赋值;
有更好的处理方式吗?除了放在watch里
computed: {
userData() {
const userData = JSON.parse(JSON.stringify(this.data));
let resultArr = [];
Object.entries(userData).forEach(([key, value]) => {
// eslint-disable-next-line
userData[key].isFull = this.checkListItem(userData[key]);
userData[key].showName = this.nameFormat(userData[key]);
...
resultArr.push(userData[key]);
});
// 默认值排除不符合要求的
_.forEach(resultArr, (item, index) => {
_.forEach(this.defaultPerson, (it, id) => {
if (it === item.ads && !item.isFull) {
// eslint-disable-next-line
this.isSelected.splice(index, 1, false);
// eslint-disable-next-line
this.addPeopleArr.splice(index, 1, false);
}
});
});
return resultArr;
},
},
这个看你具体需求。假如说是你要在这个值变动下去改动其它属性的值,用watch是最好不过的,假如说你这个变动只用希望执行一次,可以考虑在mounted的时候处理
依旧目前你的需求来看,我的建议是放在watch 处理