README
draggble-vue
Project setup
npm install
npm run serve
a draggable demo based on Vue.js.
directly import the draggable.vue then component it.
props
list: the array you want to display slot:draggableItem
eg.
<draggable :list="dataStore" :insert-type="type">
<span slot="draggableItem" slot-scope="item" >
{{ item.label.text }}
</span>
</draggable>