Prevent form submitting when pressing enter from a text input, using Vue.js February 16, 2023 by Tarik Here’s a solution for Vue.js 2.x: <input type="text" v-on:keydown.enter.prevent="addCategory" />