[Vuejs]-Console.log not working when using @submit directive in vuetify

0👍

Your problem I believe is that v-btn does not have a @submit event so you need to put that on the v-form element if you are using it. Make sure your button is inside the form element and it is of the type submit. Use prevent on the form submit event to prevent it from causing the browser to try to post your form.

<v-form @submit.prevent="submit">
     ...//some inputs
     <v-btn type="submit">I accept</v-btn>
</v-form>

Leave a comment