加载中

## 概述: 项目中大多地方获取数据时会用到加载中,而iview中的加载中结构比较灵活,引用时比较麻烦,结合项目需要,特封装此组件,方便以后使用 ## 图例: ![image.png](https://cos.easydoc.net/22492964/files/jybbkupo.png) ## 使用方法: cnpm install rview-c --save ◆ 使用组件 ```js <template> <Loading :Isloading="Isloading"></Loading> </template> <script> export default { data(){ return { Isloading:true, } } } </script> ``` ## API #### data |参数|类型|是否必填|描述| |-|-|-|-| |Isloading|Boolean|是|是否显示加载|