错误示例

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

正确示例

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

前往低代码交流专区

更多推荐