aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/popover/popover.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/popover/popover.js b/src/components/popover/popover.js
index 5fd5d94f..7f4c1cac 100644
--- a/src/components/popover/popover.js
+++ b/src/components/popover/popover.js
@@ -219,6 +219,7 @@ const Popover = {
},
onClickOutside (e) {
if (this.hidden) return
+ if (this.$refs.content.contains(e.target)) return
if (this.$el.contains(e.target)) return
this.hidePopover()
},