# cc-pullScroolView 该组件免费,但版权问题需关注“前端组件开发”公众号获取授权
#### 使用方法
```使用方法
onReachBottom() {
// 数据全部加载完
if (this.curPageNum * 10 >= this.totalNum) {
} else {
// 显示加载中
this.$refs.pullScroll.showUpLoading();
this.curPageNum++;
this.requestData();
}
},
```
#### HTML代码实现部分
```html
```