1 import Sortable from "sortablejs";
9 this.container = this.$el;
10 this.handleSelector = this.$opts.handleSelector;
12 const sortable = new Sortable(this.container, {
13 handle: this.handleSelector,
16 this.$emit('sort', {ids: sortable.toArray()});
22 export default SortableList;