Vue 3 component for Legato Dnd.
This library is for Vue 2.x, Vue 2.x version is here: vue2-legato-dnd
See legato-dnd docs for option and event descriptions.
<template>
<DragContainer>
<Draggable>Item1</Draggable>
<Draggable>Item1</Draggable>
<Draggable>Item1</Draggable>
</DragContainer>
</template>
<script>
import { DragContainer, Draggable } from 'vue-legato-dnd'
export default {
components: { DragContainer, Draggable }
}
</script>
<template>
<DragContainer
:items="items"
@orderChange="onOrderChange"
>
<Draggable v-for="t in items" :key="t.name">{t.name}</Draggable>
</DragContainer>
</template>
<script>
export default {
data: () => ({
items: [
{ name: 'Alice' },
{ name: 'Bob' },
{ name: 'Candy' },
]
}),
methods: {
onOrderChange ({ order }) {
this.items = order.map(i => this.items[i])
}
}
}
</script>