Skip to content

v2.9.0

Compare
Choose a tag to compare
@mfuu mfuu released this 22 May 12:38
· 14 commits to main since this release

Changes

  • removed props: itemTag, itemStyle
  • fixed #36

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> <!-- <<< wrapping -->
      content
    </div>
  </template>
</virtual-list>