DragScroll.js is a small library for scrolling by dragging your mouse across the specified container.
import DragScroll from "dragscroll";
...
new DragScroll({
el: this.element
});
Alternative method:
<script src="/dist/drag-scroll.js"></script>
<script>
const scrollableElement = document.querySelector('.drag-scroll');
new DragScroll({
el: scrollableElement
});
</script>
TODO