// 关闭新增弹窗 addDialogClose() { this.addDialog = false; console.log(this.addForm, "this.addForm"); this.addForm = { RESNAME: "", BLX: "", }; },关闭弹窗时 如何以另一种方式 this.addForm = { RESNAME: "", BLX: "", };清空form表单
时间: 2024-04-13 09:28:39 浏览: 140
基于B-树的GUI图书管理系统c++实现源码.zip
5星 · 资源好评率100%
可以使用Vue的`$set`方法来清空form表单。在关闭弹窗时,可以将`this.addForm`的属性值设置为空字符串,如下所示:
```javascript
addDialogClose() {
this.addDialog = false;
console.log(this.addForm, "this.addForm");
this.$set(this.addForm, "RESNAME", "");
this.$set(this.addForm, "BLX", "");
},
```
使用`$set`方法可以确保Vue能够正确地检测到属性的变化,并更新视图。这样,在关闭弹窗时,`this.addForm`的`RESNAME`和`BLX`属性都会被设置为空字符串,从而清空form表单。
阅读全文