vue实现点击区域外部的区域,关闭该区域

1  var _this = this;
2       document.addEventListener('click',function(e){
3         console.log(_this.$refs.configforms)
4         if(!_this.$refs.configforms.contains(e.target)){
5           _this.showConfigForm = false;
6         }
7       })

 

posted @ 2018-11-05 12:12  前端极客  阅读(2937)  评论(0编辑  收藏  举报