点击出现弹框,监听点击其他地方 就可以 关闭弹框
code:
watch: {
show (val) {
if (val) document.addEventListener('click', this.hide, true)
}
}
// hide 方法
hide () {
this.show = false
}
这样就可以了
点击出现弹框,监听点击其他地方 就可以 关闭弹框
code:
watch: {
show (val) {
if (val) document.addEventListener('click', this.hide, true)
}
}
// hide 方法
hide () {
this.show = false
}
这样就可以了
本文标题:监听 document 点击,关闭弹框
本文链接:https://www.haomeiwen.com/subject/dtyywhtx.html
网友评论