@beisen-phoenix/loading-pgb
v3.3.55
Published
> @beisen-phoenix/loading-pgb
Readme
加载中
@beisen-phoenix/loading-pgb
概述
对loading组件进行封装,导出一种类型的loading
API
| 参数 | 说明 | 类型 | 默认值 | 是否必传 | | ---|---|---|--- | --- | | loadingType | loading类型 可选'sunLoading'、'chrysanthemumLoading' | string | 'sunLoading' | 否 | | showMaskAlpha | 是否展示遮罩层 | boolean | false | 否 |
使用
// 小太阳
import React from 'react';
import Loading from '@beisen-phoenix/loading';
export default function LoadingPage(props) {
return <Loading />
}
//菊花
import React from 'react';
import { ChrysanthemumLoading } from '@beisen-phoenix/loading';
export default function LoadingPage(props) {
return <ChrysanthemumLoading />
}