美文网首页
element清除数据和校验效果

element清除数据和校验效果

作者: xintop | 来源:发表于2021-07-20 11:34 被阅读0次

    element dialog对话框关闭后需要清除from表单的数据和校验,可以使用以下方法

    <el-dialog
      title="会议信息"
      :visible.sync="editTemplate"
      width="900px"
      :close-on-click-modal="false"
      @close="resetForm('editForm')"
    >
    
    <el-button @click="resetForm('editForm')" id="resetBut">取消</el-button>
    

    方法:

    resetForm(formName) {
      this.$refs[formName].resetFields();
      this.editTemplate = false;
    },
    

    相关文章

      网友评论

          本文标题:element清除数据和校验效果

          本文链接:https://www.haomeiwen.com/subject/gecjmltx.html