-import Sortable from "sortablejs";
-import {Component} from "./component";
+import Sortable from 'sortablejs';
+import {Component} from './component';
/**
* SortableList
* the data to set on the data-transfer.
*/
export class SortableList extends Component {
+
setup() {
this.container = this.$el;
this.handleSelector = this.$opts.handleSelector;
dragoverBubble: false,
});
}
-}
\ No newline at end of file
+
+}