In vee-validate, how to cancel the check of a field?

clipboard.png

 
 <textarea class="form-control" name="auditReason" v-model="auditReason" v-validate=""required"" placeholder="audit reason"></textarea>
 
 
Mar.15,2021

v-validate binds a dynamic value. For example, if validate, rejects, validate= 'require' . If passed, validate='


how to use:


data(){
    return {
        type : "1",
        isRuquired :false
    }
}
<div v-show="type == '2'">
  <label></label>
  <input type="text" name="shopName" data-vv-as="" v-validate="{required: isRuquired}" v-model="shopName" placeholder="">
</div>
        
 watch: {
    type:function(newVal,oldVal){
      if(newVal == '2'){
        this.isRuquired = true;
      }else{
        this.isRuquired = false;
      }
    }
  }        
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3e9c2-347d9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3e9c2-347d9.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?