当前位置: 代码迷 >> 综合 >> vue监听全局点击事件以及解绑
  详细解决方案

vue监听全局点击事件以及解绑

热度:36   发布时间:2023-10-10 19:34:47.0
methods: {clickOther: function () {};
}mounted() {window.addEventListener("click", this.clickOther);
}beforeDestroy() {  // 实例销毁之前对点击事件进行解绑window.removeEventListener('click', this.clickOther);
}

 

  相关解决方案