Explorar el Código

fix errors in console

Henry Jameson hace 2 años
padre
commit
6fc62a771a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/components/popover/popover.js

+ 1 - 1
src/components/popover/popover.js

@@ -262,7 +262,7 @@ const Popover = {
     },
     onClickOutside (e) {
       if (this.hidden) return
-      if (this.$refs.content.contains(e.target)) return
+      if (this.$refs.content && this.$refs.content.contains(e.target)) return
       if (this.$el.contains(e.target)) return
       if (this.childrenShown.size > 0) return
       this.hidePopover()