微语 微语:代码适合中午敲,早晚出BUG

数据浅拷贝 Vue

// 使用 Object.assign() 进行浅拷贝
this.form = Object.assign({}, row)

// 使用展开操作符 ... 进行浅拷贝
this.form = { ...row }