1. 程式人生 > >VUE脫坑/1-- 如何解決vue 賦值後原資料隨賦值後的資料的變化而變化

VUE脫坑/1-- 如何解決vue 賦值後原資料隨賦值後的資料的變化而變化

錯誤示例

	  this.leftColumn = {...this.Columns};
      this.rightColumn =  {...this.Columns};

正確示例

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