Open
Description
Since there is a new plugin architecture for sortable, it would be nice to have control over these plugins (and custom plugins) with vue-draggable.
// Cherrypick extra plugins
import Sortable, { MultiDrag, Swap } from 'sortablejs';
Sortable.mount(MultiDrag, Swap);
// Cherrypick default plugins
import Sortable, { AutoScroll } from 'sortablejs/modular/sortable.core.esm.js';
Sortable.mount(AutoScroll);
It's also related to #649.