function coppyArray(arr){
return arr.map((e)=>{
if(typeof e==='object'){
return Object.assign({},e);
}else{
return e;
}
})
} //这个好像不兼容IE所以使用下面那个
jsondeepclone (obj) {
return JSON.parse(JSON.stringify(obj))
}
第二种使用 this.$set()