methods: {clickOther: function () {}; }mounted() {window.addEventListener("click", this.clickOther); }beforeDestroy() { // 实例销毁之前对点击事件进行解绑window.removeEventListener('click', this.clickOther); }