vue点击其它区域隐藏

mounted() {
//点击颜色其它区域隐藏
document.addEventListener('click', this.handleDocumentClick);
document.addEventListener('touchstart', this.handleDocumentClick);
},
methods:{
handleDocumentClick(e) {
//点击颜色其它区域隐藏
if (!this.$el.contains(e.target)) {
this.pickbodyflag = false;
}
}
}


原文地址:https://www.cnblogs.com/yixiaoyang-/p/9771600.html