element-ui和vue表单(对话框)验证提示语(残留)清除

form表单错误提示问题.png

//dialogFormVisible

//html

        
          
            
          
          
            
            启用
            停用
            
          
          
            
          
        
        
      

watch: {
        dialogFormVisible: function (val,oldVla) {
          if (this.$refs['ruleForm'] !== undefined) {
            this.$refs["ruleForm"].resetFields();
          }
        }
      },

其他链接:https://blog.csdn.net/geming2017/article/details/83902514

你可能感兴趣的:(element-ui和vue表单(对话框)验证提示语(残留)清除)