Utility to create your own NProgress bar like with Vue
npm install @bprogress/vueCreate your own progress bar with Vue
``tsx`
import { ProgressProvider } from '@bprogress/vue';
The @bprogress/vue package is a utility that lets you easily manage a progress bar, while remaining flexible with regard to the router you're using. It doesn't automatically start the progress bar when browsing, so you'll have to manage this logic yourself, unless you're using one of the integrations below.
- Soon...
`vue`
`vue title="src/Root.vue"
`
`ts title="src/main.ts"
import { createApp } from 'vue';
import Root from './Root.vue';
createApp(Root).mount('#app');
`
`vue title="src/App.vue"
``
Go to the documentation to learn more about BProgress.
If you encounter any problems, do not hesitate to open an issue or make a PR here.
MIT