@marcoschulte/vue3-progress
Version:
A fully customizable vue3 plugin to display a progress bar while waiting for something, e.g. http requests
8 lines (6 loc) • 422 B
text/typescript
import {useProgress} from './Injector';
import ProgressBar from './ProgressBar.vue';
import {type ProgressControls, type ProgressFinisher} from './ProgressControls';
import {type ProgressOptions, Vue3ProgressPlugin} from './ProgressPlugin';
import trickleComposable from './TrickleComposable';
export {Vue3ProgressPlugin, useProgress, ProgressOptions, ProgressControls, ProgressFinisher, ProgressBar, trickleComposable};