The normal behavior of the Vue.Draggable is to sort/move the elements while they are being dragged.
I want to disable this and sort only once the element is dropped somewhere.
For a visual representation. Here is the current/normal behavior: 
And here is a gif of the expected behavior: 
There is a plugin to change some of the functionality of the SortableJS library, its name is "Swap", it stops the elements movement while dragging, but once dropped, the elements get swapped, which is not what I want.
Any ideas?
I do not understand where these elements are stored. Basically, there is a data property, which is a list of the sortable elements. It is interesting that, while dragging, visually, the elements are rearranged, but regarding the data property, every element stays at its original index and nothing is changed.
Where is that change in the order happening?