Skip to content

Instantly share code, notes, and snippets.

@tnerbovik
Created June 21, 2017 11:17
Show Gist options
  • Save tnerbovik/d6ee58e7d7293b6e4f80763b33336b04 to your computer and use it in GitHub Desktop.
Save tnerbovik/d6ee58e7d7293b6e4f80763b33336b04 to your computer and use it in GitHub Desktop.
<template>
<draggable :element="'ul'" :list="tasks" :move="checkMoveSub" :options="{ group: { name: 'cards' }}">
<li v-for="task in tasks" class="task">
<div>{{ task.name }}</div>
</li>
</draggable>
</template>
<script>
import draggable from 'vuedraggable'
export default {
name: 'localDraggable',
components: {
draggable
},
props: {
tasks: {
type: Array,
required: true,
default: () => ({})
}
},
methods: {
checkMoveSub(event) {
console.log('Task moved');
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment