When using Vee-Validate you need to wrap the form with ValidationObserver and call your onSubmit method with the slot prop handleSubmit.
Your code would look like
<ValidationObserver v-slot="{handleSubmit}">
<q-form @submit.stop=“handleSubmit(onSubmit)”>
<!-- Your form items here -->
</q-form>
</ValidationObserver>
M
Posts made by marlonfsolis
-
RE: QForm not submitting when the Vee-validation ValidationProvider is used on q-input