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) }
posted @ 2022-11-08 18:55  jiazq  阅读(662)  评论(0)    收藏  举报