vue修改form表单会同步改变table问题
2021-12-10 本文已影响0人
上海_前端_求内推
//编辑
editRoles(userData) {
debugger;
this.title = "编辑数据";
this.dialog = true;
this.form = userData;
this.form = JSON.parse(JSON.stringify(this.form));//重点在这里
},