<draggable v-model="items" @end="getDragItem">
@end doesn't work, how can I get the dragged item when using it with vuex?
:list="items" @end="getDragItem" works but not with v-model
Expected Solution
to be able to get the dragged item or the event (evt)
First check https://github.com/SortableJS/Vue.Draggable/blob/master/CONTRIBUTING.md
Jsfiddle link
Step by step scenario
https://github.com/SortableJS/vue.draggable.next#with-vuex
only move is registered not
added/removed
when dragging to 2 or more componentssnippet
Actual Solution
<draggable v-model="items" @end="getDragItem">
@end
doesn't work, how can I get the dragged item when using it with vuex? :list="items" @end="getDragItem" works but not with v-modelExpected Solution
to be able to get the dragged item or the event (evt)