vue3-progressbar
vue3-progressbar copied to clipboard
I believe this is happening because the width starts at 0% and gradually increases along, so its throwing a "lighthouse" error, is there anyway around it such as using transition...
Every component name in my project in pascal case and only this component is in kebab case. Is there a way to change default name?
My app uses light and dark modes where the selector is added to `html`. Is there a way I can customize the progress bar depending on light/dark mode? ```html ......
It is working when I refresh only. Not working when url changes.
How to use vue 3-progressbar in nuxt 3. Thanks for the help
HI! Thanks for plugin! For using gradient bar could you change css property 'background-color' to background? Or could you help me to get an access to property canSuccess? Something like...
Current version only injects Progress instance into `globalProperties`. In Vue 3, we can also use [provide/inject](https://vuejs.org/guide/components/provide-inject) to pass this instance into the app. This will result in cleaner code on...
Current version is written in pure JavaScript and does not provide any type safety. I suggest adding at least a typing file for better developer experience.
Hello Everyone, I am using this progressbar in vue3 with axios api. Is this my code: ``` instance.interceptors.request.use((config) => { app.$Progress.start(); // for every request start the progress return config;...