Skip to content

Releases: mfuu/vue3-virtual-drag-list

v3.3.8

25 Dec 14:36
Compare
Choose a tag to compare

Changes

  • fix: render error when list change #22
  • Deleted props: dataSource

v3.3.7

03 Dec 12:36
Compare
Choose a tag to compare

Changes

  • fix: error when the datakey get number type value

v3.3.6

29 Oct 15:05
Compare
Choose a tag to compare

Changes

  • optimize animation effects on drop

v3.3.4

17 Oct 16:41
Compare
Choose a tag to compare

Changes

  • fix: misjudgment of scrolling to the bottom of the list

v3.3.3

16 Oct 12:48
Compare
Choose a tag to compare

Changes

  • feat: added prop placeholderClass
  • update dependencies

v3.3.2

07 Jul 06:40
Compare
Choose a tag to compare

Chnages

  • Added prop scrollSpeed, usage: { x: 10, y: 10 }
  • Only calculate the average size during the first rendering

v3.3.1

12 Jun 14:38
Compare
Choose a tag to compare

Changes

  • Added props: tableMode
  • Deleted emits: add, remove

v3.3.0

23 May 13:48
Compare
Choose a tag to compare

Changes

  • removed props: itemTag, itemStyle

The item slot must have a parent node:

<virtual-list
  v-model="list"
  :data-key="'id'"
  :handle="'.handle'"
>
  <template slot="item" slot-scope="{ record }">
    <div> <!-- <<< required wrapping -->
      content
    </div>
  </template>
</virtual-list>

v3.2.5

09 May 11:18
Compare
Choose a tag to compare

Changes

  • Feat: added emit with rangeChange #21

v3.2.4

06 May 12:24
Compare
Choose a tag to compare

Changes

  • Fixed: dom insert error on sortable: false #19
  • Fixed: click event not work on mobile #20