vue 点击弹窗外框关闭弹框

  1. https://blog.csdn.net/zjw0742/article/details/77822777

ready() {
   document.addEventListener('click', (e) => {
       if (!this.$el.contains(e.target)) this.show = false
   });
}

猜你喜欢

转载自www.cnblogs.com/liangcheng11/p/9325871.html