UNPKG

vuux

Version:

Vue3 Nuxt3 Nuxt4 组件库

24 lines (23 loc) 485 B
/** * 全局LoadingBar对象 */ export declare const _LoadingBar: { /** * 开始加载 * * @param selector string | HTMLElement */ start(selector?: string | HTMLElement): void; /** * 加载完成 * * @param selector string | HTMLElement */ finish(selector?: string | HTMLElement): void; /** * 加载错误 * * @param selector string | HTMLElement */ error(selector?: string | HTMLElement): void; };