I want to check if form is valid using vee-validate. I am currently doing it like this:
<button type="submit" :disabled="errors.count()">
But when the form is created and not validated yet, errors.count() return 0
, meaning that the button stays enabled until the user modifies a field.
Is there any way to validate it at start?