소스 검색

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()