vue使用window.addEventListener('scroll', this.scroll)
监听滚动事件不生效
window.addEventListener('scroll', this.scroll)
写在mounted
里面- html,body的高度别限制, 如
height: 100% / 100vh
,如果要高度设置背景之类的,可以设置min-height: 100vh / 100%
- 监听事件需要销毁,
destroyed() { window.removeEventListener('scroll', this.scroll) }