vue中对话框关闭以后清空对话框中input,select内容
首先需要确定要关闭的对话框,在对话框中写入关闭和要调用的函数例如:@close="handleClose"在methods:{ handleClose() { for (let key in this.form) { this.form[key] = ' '; } }}注:this.form 指的是对话框中el-form 绑定的...
·
首先需要确定要关闭的对话框,在对话框中写入关闭和要调用的函数
例如:@close="handleClose"
在methods:{
handleClose() {
for (let key in this.form) {
this.form[key] = ' ';
}
}
}
注:this.form 指的是对话框中el-form 绑定的数据 :model = "form"
如果表单中有select选择框,则要在for循还中写this.value = ' ' ;
这里面的value是select框v-model 绑定的 值 例:v-model="value"
更多推荐
已为社区贡献11条内容
所有评论(0)