As in the Sortable library.js cancel the action. I need that when the element is moved to the end, it returns to its initial position in any case. At the moment, my attempts have ended with this option:
updated () {
const el = document.querySelector(".el-table__header-wrapper tr")
if (el) {
this.sortable = Sortable.create(el, {
animation: 180,
delay: 0,
onEnd: evt => {
const oldItem = this.theadList[evt.oldIndex]
this.theadList.splice(evt.oldIndex, 1)
this.theadList.splice(evt.newIndex, 0, oldItem)
}
})
}
},