Open Madd0g opened 3 years ago
Hi, It works for me!
maybe try posting all the component?
I have the same issue, however it works for me until I add event listeners, which for some reason disable the functionality of "sort" prop and when inspecting the draggable item, I see that "sort" becomes passed as attribute instead of prop.
This works
<draggable tag="div" class="row m-0" v-model="collections" :sort="false" group="collections">
...
</draggable>
This doesn't
<draggable tag="div" class="row m-0" v-model="collections" :sort="false" group="collections" @start="myFunction">
...
</draggable>
Works for me :). Running latest version?
Well I just moved to using the Sortbale.js itself since this was bugging out for me, works fine on Sortbale.js
I have the same issue with the latest version
Step by step scenario
Disabling sorting with param:
Expected Solution
Expecting dragging only to work between lists, but dropping elements in the same group reorders them. From looking at the code, I see code calculating and updating indexes, but I don't see anything checking that
sort
option.Thanks