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       })
原文地址:https://www.cnblogs.com/yangguoe/p/9908437.html