I have a Vue JS form using Vee Validate, I have a method set up where I'd like to make a particular input field valid whenever the method runs. The method runs after a button is pressed:
/**
* Use email suggestion
*/
setEmailSuggestion: function preventScreenAutoLock(suggestion) {
this.formData.AppEmail = this.formData.AppEmail + suggestion
}
I'm not sure how to go about doing this, I essentially need to remove the validation error classes, and set them to be valid