清除表单内容和清除表单验证消息
this.$nextTick(()=>{
this.$refs['form'].resetFields();
})
只清除表单验证消息,不清除表单内容
this.$nextTick(()=>{
this.$refs['form'].clearValidate()
})
清除表单验证消息不起作用时,可尝试
setTimeout(() => {
this.$refs["form"].clearValidate();
}, 30);