vue.draggable.next
vue.draggable.next copied to clipboard
Incorrect item order
Step by step scenario
- set
:list = [ first, second, third ] - start dragging
second - set
:list = [ second, first, third ](visually with no effect) - put
secondback into previous place (list[1])
Actual Solution
HTML elements are in order ([ first, second, third ])
Expected Solution
HTML elements are in order [ second, first, third ]