提交 dc8a854a 编写于 作者: d-u-a's avatar d-u-a

docs: 补充 nvue <list> 重置 loadmore 示例

上级 c16d22e3
......@@ -64,6 +64,33 @@ app端nvue专用组件。在app-nvue下,如果是长列表,使用list组件
- `loadmore` 事件
如果列表滚动到底部将会立即触发这个事件,你可以在这个事件的处理函数中加载下一页的列表项。 如果未触发,请检查是否设置了loadmoreoffset的值,建议此值设置大于0
如何重置 loadmore
```
<template>
<list ref="list">
<cell v-for="num in lists">
<text>{{num}}</text>
</cell>
</list>
</template>
<script>
export default {
data () {
return {
lists: ['A', 'B', 'C', 'D', 'E']
}
},
methods: {
// 重置 loadmore
resetLoadMore() {
this.$refs["list"].resetloadmore();
}
}
}
</script>
```
- `scroll` 事件
列表发生滚动时将会触发该事件,事件的默认抽样率为 10px,即列表每滚动 10px 触发一次,可通过属性 offset-accuracy 设置抽样率。
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册