Cleanup events

pull/496/head
Cagatay Civici 2020-09-18 15:44:31 +03:00
parent 24b45d3664
commit 91aef8c761
1 changed files with 2 additions and 4 deletions

View File

@ -258,13 +258,11 @@ export default {
} }
} }
}, },
onFocus(event) { onFocus() {
this.focused = true; this.focused = true;
this.$emit('focus', event);
}, },
onBlur(event) { onBlur() {
this.focused = false; this.focused = false;
this.$emit('blur', event);
}, },
onKeyDown(event) { onKeyDown(event) {
if (this.overlayVisible) { if (this.overlayVisible) {