Remove event listener when modal is destroyed
This commit is contained in:
parent
09949fc7ee
commit
205e38ffa9
1 changed files with 9 additions and 5 deletions
|
@ -3,14 +3,18 @@ const Modal = {
|
|||
methods: {
|
||||
close: function () {
|
||||
this.$emit('close')
|
||||
}
|
||||
},
|
||||
mounted: function () {
|
||||
document.addEventListener('keydown', (e) => {
|
||||
},
|
||||
handleKeydown: function (e) {
|
||||
if (this.show && e.keyCode === 27) {
|
||||
this.close()
|
||||
}
|
||||
})
|
||||
}
|
||||
},
|
||||
mounted: function () {
|
||||
document.addEventListener('keydown', this.handleKeydown)
|
||||
},
|
||||
destroyed: function () {
|
||||
document.removeEventListener('keydown', this.handleKeydown)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue