[Vuejs]-Disable scrolling when navigating with arrows up and down

1👍

You need to prevent the default browser behavior by calling event.preventDefault().

In Vue.js you can do this directly in the template like so:

<input
    ...
    @keydown.up.prevent="navigateUp"
    @keydown.down.prevent="navigateDown"
/>

Leave a comment