/** * API 文档 * props default 说明 * loading false 是否 loading 状态 * full false 是否全屏 loading * size 30 loading 图标大小 * text - loading 文字 * textSize 22 loading 文字大小 * textColor #7383a2 loading 文字颜色 * vertical false 是否垂直排列文案 */ import { Component, ComponentProps } from 'waft'; export class Loading extends Component { constructor(props: ComponentProps) { super(props); } }