vue form表单验证清除


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

this.$nextTick(()=>{
  this.$refs['form'].resetFields();
})

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

this.$nextTick(()=>{
  this.$refs['form'].clearValidate() 
})

 

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

 
 
  setTimeout(() => {
    this.$refs["form"].clearValidate();
  }, 30);


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM