vue.draggable.next
vue.draggable.next copied to clipboard
multiDrag dosent work
<draggable v-model="tableData" tag="tbody" item-key="guid" :multiDrag="true" multiDragKey="ctrl">
<template #item="{ element }">
<tr>
<td>{{ element.id }}</td>
<td>{{ element.name }}</td>
<td>{{ element.sport }}</td>
</tr>
</template>
</draggable>
The lines are dragged, but when the key is released, only one line is moved in the end.
I've got a fork that supports multidrag (https://github.com/david-mohr/vue.draggable.next/tree/multidrag), if there's interest, I can put together a PR
That would be great! I think many people would appreciate that a lot including me
@Nemnon @sadovsf multidrag support PR is here #153