Search code examples
javascriptvue.jsvuejs2rubaxa-sortablevue.draggable

what is the event for Vue.Draggable un-choose?


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


Solution

  • 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