I\'m using Framework7 sortable list and it works well, just that it doesn\'t trigger an event when the list is changed.
So I\'m trying a few built-in events:
For me
document.addEventListener("mousewheel", this.mousewheel.bind(this), { passive: false });
did the trick (the { passive: false } part).
{ passive: false }