drag-on-vue

## Project setup ``` npm install npm run serve ```

Usage no npm install needed!

<script type="module">
  import dragOnVue from 'https://cdn.skypack.dev/drag-on-vue';
</script>

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>