vue-virtual-scroller icon indicating copy to clipboard operation
vue-virtual-scroller copied to clipboard

Select the value and roll the paste

Open Thecodefirst opened this issue 1 year ago • 1 comments

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

Thecodefirst avatar Jan 20 '24 09:01 Thecodefirst