# Indicator 加载中
Indicator加载中组件,在屏幕中央显示加载中状态
# 规则
- 可结合Icon组件使用
- 手动关闭
# 可配置参数
option | type | Required | Default | Description |
---|---|---|---|---|
message | String | no | - | 文案 |
icon | String | no | loading | 要求与icon组件中的type对应,默认是loading图标 |
# 使用方法
<script>
import Indicator from "horizon-ui";
Indicator.open({message: '加载中'})
Indicator.close() // 关闭
</script>