vue监听滚动条

网上看了一大堆,发现都不能用,于是结合了他们的经验自己补全了

  mounted(){
      window.addEventListener('scroll',this.handleScroll,true)
    },
    methods:{
      handleScroll(e){
        console.log(e.target.scrollTop)
      }
    }

猜你喜欢

转载自blog.csdn.net/qcg14774125/article/details/82983808