vue form表单验证清除

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

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

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

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

 

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


  setTimeout(() => {
    this.$refs["form"].clearValidate();
  }, 30);
posted @ 2022-03-02 17:36  豪华蟹黄堡  阅读(801)  评论(0)    收藏  举报