vue-draggable-next
vue-draggable-next copied to clipboard
How to use sortablejs plugins
I want to use swap plugin like this https://github.com/SortableJS/Sortable/tree/master/plugins/Swap but I don't know how or where to write the mount method
now my code is like this
<vue-draggable-next group="drapGroup" v-model="row.dropList" @change="dropChange($event, row, false)">
<div class="can-drop" v-for="item in row.dropList" :key="item.id">
<div>{{item.name}}</div>
</div>
</vue-draggable-next>
<script setup>
import { VueDraggableNext } from 'vue-draggable-next'
...
</script>
what can i do next
I want to use swap plugin like this https://github.com/SortableJS/Sortable/tree/master/plugins/Swap but I don't know how or where to write the mount method
now my code is like this
<vue-draggable-next group="drapGroup" v-model="row.dropList" @change="dropChange($event, row, false)"> <div class="can-drop" v-for="item in row.dropList" :key="item.id"> <div>{{item.name}}</div> </div> </vue-draggable-next> <script setup> import { VueDraggableNext } from 'vue-draggable-next' ... </script>
what can i do next
Is there a solution please?