vue elementUI Dialog 中表单清除方法
Object.assign(this.usersForm, this.$options.data().usersForm)this.usersForm就是表单数据。 vue elementUI Dialog ,一开始进页面先打开编辑弹框的话,用elementui 清除表单的方法,下次再打开新建的时候,会发现表单中的数据还是第一次打开时候的数据。这样不行,只能手动循环清除数据...
·
Object.assign(this.usersForm, this.$options.data().usersForm)
this.usersForm就是表单数据。 vue elementUI Dialog ,一开始进页面先打开编辑弹框的话,用elementui 清除表单的方法,下次再打开新建的时候,会发现表单中的数据还是第一次打开时候的数据。
这样不行,只能手动循环清除数据
for (let key in this.usersForm) {
this.usersForm[key] = "";
}
更多推荐
已为社区贡献2条内容
所有评论(0)