这个博客的逗号是中文https://www.cnblogs.com/wangqi2019/p/11690208.html
if (this.treeId == item1.id) {
// 因有重复的属性id 不能直接合并 需重新改属性并赋值
item1.classification_id = this.activeTree.id;
item1.classification_code_name = this.activeTree.code + ‘ - ‘ + this.activeTree.name;
this.$set(item1,‘self_update‘,this.activeTree.id); // 先使用强制更新一下
delete item1.self_update;然后把这个属性再删了
}
})
原文:https://www.cnblogs.com/wangduojing/p/13723455.html