Answer the question
In order to leave comments, you need to log in
Closing a window with a cancel button in Vue.js?
Tell me how to implement an analogue of an event @click="$emit('close')"
using a button esc
on the keyboard?
In this case, the modal view component.
@keyup.esc="('close')"
@keyup.esc="$emit('close')" tabindex="0"
doesn't work
Answer the question
In order to leave comments, you need to log in
For an element to fire the @keyup event, the element must have focus.
Here is an example of how it works
https://codepen.io/xevin/pen/BaBJWve?editors=1010
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question