vue销毁当前组件的事件监听
Posted 小灬壊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue销毁当前组件的事件监听相关的知识,希望对你有一定的参考价值。
mounted(){ this.loadlist() this.userlist() this.browserRedirect() window.addEventListener("scroll",this.handleFun) }, destroyed(){ window.removeEventListener(\'scroll\', this.handleFun); },
methods:{ handleFun(){ var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; var windowHeight = document.documentElement.clientHeight || document.body.clientHeight; var scrollHeight = document.documentElement.scrollHeight || document.body.scrollHeight; if (scrollTop + windowHeight == scrollHeight) { this.page = this.page+1 this.loadlist() } }, }
以上是关于vue销毁当前组件的事件监听的主要内容,如果未能解决你的问题,请参考以下文章