UNPKG

fant-mini-plus

Version:

fant-mini-plus是一个基于Vue3和TypeScript的uni-app高效UI组件库,提供丰富的组件和样式,帮助开发者快速构建高质量的移动应用。

36 lines (35 loc) 760 B
export type LoadingType = 'flower' | 'dot'; export type LoadingOptions = { /** * 提示的内容 */ title?: string; /** * 动画类型 */ type?: LoadingType; /** * 是否显示黑色底色,默认:true */ background?: boolean; /** * 延时展示时间,默认0,单位毫秒 */ delayTime?: number; /** * 点击时的回调函数 */ onClick?: () => void; /** * 完全展示后的回调函数 */ onOpened?: () => void; /** * 关闭时的回调函数 */ onClose?: () => void; }; export interface Loading { showLoading(loadingOptions: LoadingOptions | string): void; hideLoading(): void; }