表單
<el-form ref="xxx">
</el-form>
method
cleanValidate(formName){
// 清除表單校驗(yàn)的提示
if (this.$refs[formName]) {
// 延時(shí)執(zhí)行
this.$nextTick(function () {
this.$refs[formName].clearValidate();
})
};
},
調(diào)用
this.cleanValidate("xxx")