vue-virtual-scroller
vue-virtual-scroller copied to clipboard
Select the value and roll the paste
Describe the bug
Select the value and roll the paste
Reproduction
<a-checkbox-group v-model:value="checkedListLocal" class="h-full w-full">
<DynamicScroller :items="vsCopyLocal" :min-item-size="30" class="scroller">
<template #default="{ item, active }">
<DynamicScrollerItem :key="item" :active="active" :item="item" :data-index="item">
<div class="mb-8px h-30px">
<a-checkbox :disabled="handleSwitch(item)" :value="item">
<a-tooltip>
<template #title>{{ item }}</template>
<span class="block truncate overflow-ellipsis" :class="[controlpopWidth]">{{
item
}}</span>
</a-tooltip>
</a-checkbox>
</div>
</DynamicScrollerItem>
</template>
</DynamicScroller>
</a-checkbox-group>
System Info
vue-virtual-scroller": "2.0.0-beta.3"
Used Package Manager
yarn
Validations
- [X] Read the docs.
- [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
- [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion.
- [X] The provided reproduction is a minimal reproducible example of the bug.