1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(UI): esc key to cancel cell edit

This commit is contained in:
2021-02-27 18:29:47 +01:00
parent b4ead6992c
commit 45351faeae
2 changed files with 24 additions and 0 deletions

View File

@ -74,6 +74,12 @@ export default {
else return '';
}
},
created () {
window.addEventListener('keydown', this.onKey);
},
beforeDestroy () {
window.removeEventListener('keydown', this.onKey);
},
methods: {
confirmModal () {
this.$emit('confirm');
@ -82,6 +88,11 @@ export default {
hideModal () {
this.$emit('hide');
},
onKey (e) {
e.stopPropagation();
if (e.key === 'Escape')
this.hideModal();
}
}
};