Created
June 21, 2017 11:17
-
-
Save tnerbovik/d6ee58e7d7293b6e4f80763b33336b04 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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