vue 点击弹窗以外的其他区域可以关闭弹窗

html:

<div class="orgTree" @click.stop="stopMp" ref="treeWrap">
    .....
</div>

js:

复制代码
mounted () {
    let _this = this;
    document.addEventListener('mouseup',(e) =>{
        let tree = this.$refs.treeWrap
        if (tree) {
          if (!tree.contains(e.target)) {
            this.isShowTree =false
          }
        }
      })      
}
复制代码

备注: 同一个页面有多个相同的弹窗也可以通过

时而疯狂女汉子,时而温柔软妹子
原文地址:https://www.cnblogs.com/csji/p/13267270.html