VUE脱坑/1-- 如何解决vue 赋值后原数据随赋值后的数据的变化而变化
错误示例this.leftColumn = {...this.Columns};this.rightColumn ={...this.Columns};正确示例this.leftColumn = JSON.parse(JSON.stringify(this.Columns));this.rightColumn = JSON.parse(JSON....
·
错误示例
this.leftColumn = {...this.Columns};
this.rightColumn = {...this.Columns};
正确示例
this.leftColumn = JSON.parse(JSON.stringify(this.Columns));
this.rightColumn = JSON.parse(JSON.stringify(this.Columns));
更多推荐
已为社区贡献9条内容
所有评论(0)