27 lines
488 B
Vue
27 lines
488 B
Vue
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
downloading: false
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
shortcut(e) {
|
||
|
if (e.keyCode === 90 && (e.ctrlKey || e.metaKey)) {
|
||
|
if (e.shiftKey) {
|
||
|
this.redo();
|
||
|
} else {
|
||
|
this.undo();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
enableShortcut() {
|
||
|
document.addEventListener('keydown', this.shortcut);
|
||
|
},
|
||
|
disableShortcut() {
|
||
|
document.removeEventListener('keydown', this.shortcut);
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
</script>
|