### 我的技术微信公众号
查看更多前端组件和框架信息,请关注我的技术微信公众号【前端组件开发】

# cc-pullScroolView
#### 使用方法
```使用方法
onReachBottom() {
// 数据全部加载完
if (this.curPageNum * 10 >= this.totalNum) {
} else {
// 显示加载中
this.$refs.pullScroll.showUpLoading();
this.curPageNum++;
this.requestData();
}
},
```
#### HTML代码实现部分
```html
```