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
App.vue
Home.vue
2020 Updated:
Use @scroll.passive to watch scroll of any element in component:
@scroll.passive
Example:
Template
...
Methods:
handleScroll (e) { var scrollPos = e.target.scrollTop }