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
          }
        }
      })      
}
复制代码

 

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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM