Fixed #62 - Menu and OverlayPanel target position miscalculated

pull/104/head
cagataycivici 2019-10-15 11:22:46 +03:00
parent 42946e8afe
commit 582eae02ff
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ export default {
}, },
show(event) { show(event) {
this.visible = true; this.visible = true;
this.target = event.target; this.target = event.currentTarget;
}, },
hide() { hide() {
this.visible = false; this.visible = false;

View File

@ -59,7 +59,7 @@ export default {
}, },
show(event) { show(event) {
this.visible = true; this.visible = true;
this.target = event.target; this.target = event.currentTarget;
}, },
hide() { hide() {
this.visible = false; this.visible = false;