I know there is event for choose but not sure what should I use for un-choose/un-select, for my use case I cannot use @end
event.
<draggable :list="list" @choose ="onChoose">
Here is the doc which I am referring.
https://github.com/SortableJS/Vue.Draggable#events
It would be
<draggable :list="list" @choose ="onChoose" @unchoose="onUnchoose">
From the Vue.Draggable docs
Support for Sortable events:
start, add, remove, update, end, choose, unchoose, sort, filter, clone