0.1.0 • Published 5 years ago

drag-on-vue v0.1.0

Weekly downloads
3
License
-
Repository
-
Last release
5 years ago

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>