diff --git a/src/component/popper.js.vue b/src/component/popper.js.vue index 0dc0ed2..2fff680 100644 --- a/src/component/popper.js.vue +++ b/src/component/popper.js.vue @@ -159,15 +159,9 @@ watch: { showPopper(value) { if (value) { - this.$emit('show', this); - if (this.popperJS) { - this.popperJS.enableEventListeners(); - } this.updatePopper(); + this.$emit('show', this); } else { - if (this.popperJS) { - this.popperJS.disableEventListeners(); - } this.$emit('hide', this); } },