Skip to content
Alex Samuel edited this page Aug 11, 2018 · 1 revision

Scrolling

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)
    },
Clone this wiki locally