vue-element关闭对话框,清除form表单校验


  
  


methods:{
  cancelClick(){
    this.addDialog.open = false;
    //清空绑定数据
    this.resetDataForm()
    //清除form表单校验
    this.$refs.form.resetFields();
  }
}

你可能感兴趣的:(vue-element关闭对话框,清除form表单校验)