UNPKG

@nguyenshort/vue3-loading-indicator

Version:

Vue 3 Loading Indicator bar. Support typescript, composable API, option API

12 lines (11 loc) 374 B
import type { App } from 'vue'; import { VueLoadingIndicatorConfig, VueLoadingIndicatorInstance } from "../index"; declare module '@vue/runtime-core' { interface ComponentCustomProperties { $loading: VueLoadingIndicatorInstance; } } declare const plugin: { install(app: App, options?: Partial<VueLoadingIndicatorConfig>): void; }; export default plugin;