ddBuy icon indicating copy to clipboard operation
ddBuy copied to clipboard

ToTop.vue 事件监听没有销毁

Open abigmiu opened this issue 2 years ago • 0 comments

// 第38行, this.throttler 返回的是一个新的函数A
window.addEventListener('scroll', this.throttler(this.getScrollTop, 300))
//  第75 行, 销毁的是定义好的 getScrollTop 函数, 而不是函数A
window.removeEventListener('scroll', this.getScrollTop)

abigmiu avatar Feb 20 '22 14:02 abigmiu