Como en Sortable library.js cancela la acción. Necesito que cuando el elemento se mueva hasta el final, vuelva a su posición inicial en cualquier caso. Por el momento, mis intentos han terminado con esta opción:
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) } }) } },