@vip30/vue-draggable-virtual-scroll-list
TypeScript icon, indicating that this package has built-in type declarations

0.0.15 • Public • Published

vue-draggable-virtual-scroll-list

Description

🔌 SortableJS/Vue.Draggable + tangbc/vue-virtual-scroll-list = 💡

Vue component who put SortableJS/Vue.Draggable and tangbc/vue-virtual-scroll-list together and allow drag-and-drop and big amount data list with high scroll performance.

Usage

<div id="main">
  <draggable-virtual-list
    class="phrase-list"
    v-model="items"
    :size="50"
    :keeps="20"
    :data-key="'id'"
    :data-sources="items"
    :data-component="Item"
  >
  </draggable-virtual-list>
</div>

<script>
const Item = {
  props: {
    source: {
      type: Object,
      default () {
        return {}
      },
    },
  },
  template: `
    <div class="phrase" :key="source.id">
      {{ source.content }}
    </div>
  `
}

new Vue({
  el: '#main',
  components: {
    DraggableVirtualList,
  },
  data() {
    return {
      items: [
        { source: { id: 1, content: 'hello' } },
        { source: { id: 2, content: world' } },
        // ...
      ],
      Item
    }
  },
})
</script>

Please see ./example/index.html.

License

MIT License.

Readme

Keywords

none

Package Sidebar

Install

npm i @vip30/vue-draggable-virtual-scroll-list

Weekly Downloads

13

Version

0.0.15

License

MIT

Unpacked Size

151 kB

Total Files

28

Last publish

Collaborators

  • kc_vip30