- Full-Stack Vue.js 2 and Laravel 5
- Anthony Gore
- 54字
- 2021-07-02 19:57:23
Escape key
Having a close button for our modal is handy, but most people's instinctual action for closing a window is theEscapekey.
v-onis Vue's mechanism for listening to events and seems like a good candidate for this job. Adding thekeyup argument will trigger a handler callback afteranykey is pressed while this input is focused:
<input v-on:keyup="handler">