Watch window.scrollY changes in Vuejs

前端 未结 4 1695
野趣味
野趣味 2021-02-15 17:42

I have a very simple app, that has 2 components: the App.vue and another component, Home.vue where I hold the rest of the structure of the app: a stick

4条回答
  •  隐瞒了意图╮
    2021-02-15 18:08

    2020 Updated:

    Use @scroll.passive to watch scroll of any element in component:

    Example:

    Template

    • ...

    Methods:

    handleScroll (e) {
      var scrollPos = e.target.scrollTop
    }
    

提交回复
热议问题