vue 監聽頁面滾動事件

Rain_發表於2019-02-18

在vue中監聽頁面滾動執行一些操作

  mounted(){    window.addEventListener('scroll',this.handleScroll,true)  },
  methods: {
    handleScroll(e){      var scrollTop = e.target.documentElement.scrollTop || e.target.body.scrollTop;      // 執行程式碼
    },  }複製程式碼


相關文章