点击出现弹框,监听点击其他地方 就可以 关闭弹框
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
}
这样就可以了