573c4e26d5
Now tags load with the page, not via AJAX.
19 lines
No EOL
369 B
JavaScript
19 lines
No EOL
369 B
JavaScript
import Sortable from "sortablejs";
|
|
|
|
/**
|
|
* SortableList
|
|
* @extends {Component}
|
|
*/
|
|
class SortableList {
|
|
setup() {
|
|
this.container = this.$el;
|
|
this.handleSelector = this.$opts.handleSelector;
|
|
|
|
new Sortable(this.container, {
|
|
handle: this.handleSelector,
|
|
animation: 150,
|
|
});
|
|
}
|
|
}
|
|
|
|
export default SortableList; |