<div v-if="!$v.fullname.required" class="error-messages">
The full name field is required.
</div>
<div v-if="!$v.fullname.maxLength" class="error-messages">
You can enter 30 characters
{{ $v.fullname.$params.maxLength.min }} only.
</div>
I have two validation errors for one input field, Where for the second validation error message, if the maxlength for input field is exceeding that error message is displaying and now the problem is with first validation error message
By default it's displaying the first validation error message, But i need to display it as, Initially no validation error messages later if user entered some data in input field and then deleted and moved to second field then i have display that first validation error message
validations: {
fullname: { required, minLength: minLength(30), maxLength: maxLength(29) },
}