监听 document 点击,关闭弹框
2020-04-27 本文已影响0人
微笑的大步向前走
点击出现弹框,监听点击其他地方 就可以 关闭弹框
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
}
这样就可以了