# LoadMore 加载更多 
统一封装一下
# 基础用法
<template>
<qinui-load-more />
</template>
# 修改默认文字
设置 content-text
<template>
<qinui-load-more content-text="加载中" />
</template>
# 改变颜色
<template>
<qinui-load-more color="#007AFF" />
</template>
# API
# Props
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|---|---|---|---|---|
| status | 上拉的状态:more-加载前;loading-加载中;noMore-没有更多了 | String | more | more | loading | noMore |
| showIcon | 是否显示 icon | Boolean | true | true | false |
| color | 文字颜色 | String | - | - |
| contentText | 文案映射 | Object | - | - |
| showText | 是否显示文案 | Boolean | true | true | false |
# ContentText Props
| 参数 | 说明 | 类型 | 默认值 | 可选值 |
|---|---|---|---|---|
| contentdown | 加载前文案 | String | 查看更多 | - |
| contentrefresh | 加载中文案 | String | 加载中 | - |
| contentnomore | 没有数据文案 | String | 没有更多 | - |
← List 虚拟列表 Range 区间选择器 →