1.0.3 • Published 3 years ago

vue-virtual v1.0.3

Weekly downloads
5
License
ISC
Repository
-
Last release
3 years ago
// data = [{ name: 'Foo bar' }]
<virtual-list :data="data" :minSize="50" track-by="id" style="height: 500px;">
  <div slot-scope="scope">
    {{ scope.itemData.name }} // Foo bar
  </div>
</virtual-list>
props: {
  data: {
    type: Array,
    default () {
      return []
    }
  },
  minSize: Number, // 横向滚动 ? 最小item的width : 最小item的height
  horizontal: Boolean, // 横向滚动
  trackBy: String
}
1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

4 years ago

1.0.0

4 years ago