Releases: mfuu/vue3-virtual-sortable
Releases · mfuu/vue3-virtual-sortable
v3.0.0
Changes
vue-virtual-draglist
now renamed tovue-virtual-sortable
I'm sorry for the inconvenience caused by the name change,
but the new name may be more in line with the functionality of the component itself.- Deleted prop
itemClass
- Adjust the default value with
draggable: '[role="item"]'
- Update dependencies
v3.3.8
v3.3.7
v3.3.6
v3.3.4
v3.3.3
v3.3.2
v3.3.1
v3.3.0
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>