瀏覽代碼

fix errors in console

Henry Jameson 2 年之前
父節點
當前提交
6fc62a771a
共有 1 個文件被更改,包括 1 次插入1 次删除
  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()