Vuetify - How to access data in form rule
问题 Can I access a data element in a rule ? Here is my code running I'm trying to flip the value of a data element on a text field rule in a Vuetify form. The rule itself works fine, however I'm unable to access the data element, I'm getting this error: TypeError: Cannot set property 'disabled' of undefined Here is my code: data: function() { return { disabled: false, rules:{ sellerId(value){ if(value.length == 0){ this.disabled = true; return "What are you trying to do here?"; } else{ return