# InfiniteScroll 无限滚动
滚动至底部时,加载更多数据。
# 基础用法
在要实现滚动加载的列表上上添加v-infinite-scroll
,并赋值相应的加载方法,可实现滚动到底部时自动执行加载方法。
# 禁用加载
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
# Attributes
Attribute | Description | Type | Accepted values | Default |
---|---|---|---|---|
infinite-scroll-disabled | is disabled | boolean | - | false |
infinite-scroll-delay | throttle delay (ms) | number | - | 200 |
infinite-scroll-distance | trigger distance (px) | number | - | 0 |
infinite-scroll-immediate | Whether to execute the loading method immediately, in case the content cannot be filled up in the initial state. | boolean | - | true |
← Calendar 日历 Drawer 抽屉 →