VuetifyでDrag&Dropしたい場合は、直でsortable.jsを使わないといけないらしい。。
$ npm i -S sortablejs
import Sortable from "sortablejs"; export default { mounted() { this.$nextTick(function() { let table = document.querySelector(".v-datatable tbody"); const _self = this; Sortable.create(table, { onEnd({ newIndex, oldIndex }) { // change array in data() } }); }); }, }