scroll事件监听不生效
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) }
浙公网安备 33010602011771号