vue 点击弹窗以外的其他区域可以关闭弹窗
时间:2020-04-15 10:14:43
收藏:0
阅读:865
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/mmzuo-798/p/12703264.html
评论(0)