vuejs: @keyup.esc on div element is not working

前端 未结 6 608
借酒劲吻你
借酒劲吻你 2021-02-12 12:57

I\'m expecting that \'close\' event is fired when I\'m clicking ESC button being on \"shadow-modal\" div, but it\'s not happening

vue 2.5.13, any ideas why?

6条回答
  •  暖寄归人
    2021-02-12 13:27

    If you need to close a modal window, you must observe several conditions.

    1. In the tag of the modal window:
    1. In the lifecycle hook mounted():
    mounted() {
       this.$refs.modal.focus()
    }
    
    

提交回复
热议问题