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

前端 未结 6 1893
轻奢々
轻奢々 2021-02-12 13:10

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:47

    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()
    }
    
    

提交回复
热议问题