data(){
oldpersonId:[],
personId:[]
}
methods:{
getData(){
this.oldpersonId=this.personId
//这会导致在其他方法里改变personId的数据的时候,这里的oldpersonId也会改变
}
}
解决办法:
this.oldpersonId = [...this.personId]
this.oldpersonId = JSON.parse(JSON.stringify(this.personId))