Vuetify 表单规则验证

Vuetify component:

<v-text-field :rules="[ sellerId ]"></v-text-field>

JS:

data: function () {
  return {
    disabled: false
  }
},
methods: { 
  sellerId (value) {
    if (value.length === 0) {
      this.disabled = true;
      return "What are you trying to do here?";  
    } else {
      return true;
    }
  }
}
原文地址:https://www.cnblogs.com/oltra/p/10876863.html