vue element-ui closes the pop-up window to clear the form validation, clear the form

Increase ref attribute:

<el-form ref="formData"></el-form>

 

ElementUI自带清除表单方法

this.$refs[formName].resetFields(); // 重置表单移除校验
this.$refs[formName].clearValidate(); // 仅清除验证

 

Guess you like

Origin blog.csdn.net/SmartJunTao/article/details/108467902