We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To set up scrolling:
div.scroll(style="height: 200px; overflow-y: scroll;" v-on:scroll="scroll($event)")
To watch the scroll position (maybe there's a more Vue way to do this):
scroll(event) { console.log(event.target.scrollTop) },