Currently, I am implementing form validation using VeeValidate. Although I prefer not to rely on JavaScript for form submission, I still want to prevent users from submitting the form if there are any errors present. However, using the code snippet below seems to disable the default action entirely:
<form @submit.prevent="validateBeforeSubmit">
Is there a workaround or solution to this issue? Your assistance would be greatly appreciated!