Skip to content

FaLoading 加载遮罩

示例

ts
import { loadingHide, loadingShow } from '@/ui/components/FaLoading'

loadingShow({
  type: 'plane',
  size: 50,
  text: '加载中...',
})

setTimeout(() => {
  loadingHide()
}, 2000)

Props

属性名说明类型默认值
type加载图案类型'plane' | 'chase' | 'bounce' | 'wave' | 'pulse' | 'flow' | 'swing' | 'circle' | 'circle-fade' | 'grid' | 'fold' | 'wander''plane'
size加载图案大小number50
text加载文本string-