美文网首页
vue监听滚动事件

vue监听滚动事件

作者: 有你才精彩XX | 来源:发表于2020-09-11 16:03 被阅读0次
//销毁事件
destroyed() {
          // 离开该页面需要移除这个监听的事件,不然会报错  必须带第三个参数true,否则销毁不成功
          window.removeEventListener('scroll', this.Scroll, true);
},
//调用事件
mounted(){
    window.addEventListener('scroll',this.Scroll,true)
},
//函数
methods:{
        Scroll:function(){
            console.log(this.$refs.box.scrollTop)
        },
}

相关文章

网友评论

      本文标题:vue监听滚动事件

      本文链接:https://www.haomeiwen.com/subject/kqkbektx.html