1.0.6 • Published 2 years ago

vue-legato-dnd v1.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Vue Legato DnD

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.

Basic Usage

<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>

Bind with Items

<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>