Cleanup events
parent
24b45d3664
commit
91aef8c761
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue