user12487529
user12487529

Reputation: 50

Make VueJS form to not submit on enter key

I am wondering, is there way to disable the form submition on enter key press inside one of the input in Vue js. I am currently having simple form with button and one input and i am handling the submit with @submit.prevent="submitFunctionClickFunction"

Upvotes: 1

Views: 2661

Answers (1)

Yom T.
Yom T.

Reputation: 9180

Try adding @keydown.enter.prevent on the input field.

Upvotes: 7

Related Questions