Published
- 1 min read
@keyup.enter vue
The solution for this is noted below
@keyup.enter vue
Solution
<input v-on:keyup.enter="submit" />
<!-- Also works like this: -->
<input @keyup.enter="submit" />
Try other methods by searching on the site. That is if this doesn’t work