Answer the question
In order to leave comments, you need to log in
How to track scroll event ON ELEMENT?
Actually, the subject, you need to catch the scroll event directly on the element, something like $ element.bind('mousewheel', ...) in jQuery. Is there such an event? searching for nothing sensible except for crutches did not find
Answer the question
In order to leave comments, you need to log in
you need to catch the scroll event
something like $element.bind('mousewheel',
<div @wheel="onWheel" @scroll="onScroll">
methods: {
onWheel() {
console.log('wheel');
},
onScroll() {
console.log('scroll');
},
},
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question