vue2监听滚动条事件
时间: 2023-09-16 15:06:40 浏览: 236
吨'范数-vue移动端监听滚动条高度的实现方法
可以通过给监听元素绑定scroll事件来实现。具体可以参考下面的代码:
```
mounted() {
window.addEventListener('scroll', this.handleScroll);
},
destroyed() {
window.removeEventListener('scroll', this.handleScroll);
},
methods: {
handleScroll() {
// 监听滚动条事件的处理逻辑
}
}
```
阅读全文