vue form表单验证清除

清除表单内容和清除表单验证消息

 this.$nextTick(() => {

      this.$refs['formData'].resetFields();

 })

只清除表单验证消息,不清除表单内容

 this.$nextTick(() => {

      this.$refs['formData'].clearValidate()

 })

 清除表单验证消息不起作用时,可尝试以下写法

setTimeout(() => {

     this.$refs['formData'].clearValidate();

}, 30);

formData 是指当前表单绑定的对象
<el-form ref="formData" :model="formData"/> 

猜你喜欢

转载自blog.csdn.net/m0_59735348/article/details/126814587