vue 深拷贝
Posted wqing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 深拷贝相关的知识,希望对你有一定的参考价值。
Vue.set(row,‘isEdit‘,true);
let newRow = JSON.parse(JSON.stringify(row));
this.totalData.push(newRow);
console.log(‘添加‘,this.totalData)
从其它表格添加进来的数据如果有相同的就会指向同一个引用,所以需要深度复制一次。
以上是关于vue 深拷贝的主要内容,如果未能解决你的问题,请参考以下文章