pleroma-fe/src/components/modal/modal.js
2019-02-15 13:34:33 -05:00

18 lines
301 B
JavaScript

const Modal = {
props: ['show', 'title'],
methods: {
close: function () {
this.$emit('close')
}
},
mounted: function () {
document.addEventListener('keydown', (e) => {
if (this.show && e.keyCode === 27) {
this.close()
}
})
}
}
export default Modal