如何解決vue 賦值後原數據隨賦值後的數據的變化而變化

錯誤示例this

this.leftColumn = {...this.Columns};
this.rightColumn = {...this.Columns};
1
2
正確示例string

this.leftColumn = JSON.parse(JSON.stringify(this.Columns));
this.rightColumn = JSON.parse(JSON.stringify(this.Columns));
———————————————— gif

相關文章
相關標籤/搜索