A
A
Andrej Sharapov2019-09-05 20:20:47
Vue.js
Andrej Sharapov, 2019-09-05 20:20:47

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 escon 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

2 answer(s)
S
Stepan Krapivin, 2019-09-06
@Madeas

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

H
Hyuugo, 2019-09-06
@Hyuugo

Can be implemented via event listener:

mounted: function () {
  document.addEventListener("keydown", (e) => {
    if (this.show && e.keyCode == 27) {
      this.$emit("close");
    }
  });
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question