[Vuejs]-How to work with EventListeners for draggable scrolling?

0👍

I ended up using vue-dragscroll. Works like a charm and the setup is totally simple. If needed, I can also set a starting position of my scroll container.

Don’t forget overflow: auto in css

<div ref="scrollContainer" v-dragscroll>
  ...
</div>
// Setting starting point
const scrollContainer = this.$refs.scrollContainer
scrollContainer.scrollLeft = 500;

Leave a comment