1.0.0 • Published 5 years ago

vue-lmdd v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

vue-lmdd

install:

npm install vue-lmdd

main.js:

import VueLMDD from 'vue-lmdd'
import 'vue-lmdd/dist/style.css'
Vue.use(VueLMDD,options);

basic markup:

<div v-lmdd-scope>
  <div 
       v-for="(container,index) in containers"
      :key="index"
       v-lmdd-container="container.items"
  >
    <div
         v-for="item in container.items"
        :key="item"
         v-lmdd-draggable="item"
    >
    </div>
  </div>
</div>
1.0.0

5 years ago