[Vuejs]-How do I change the v-progress-loader-circular total time out?

0👍

Change the :value property to a number that you multiply with loaderValue to get 100. For my case. I have used a divider like this

this.divider = 100 / this.loaderValue;
<v-progress-circular :rotate="-90" :size="100" :width="15" :value="divider * loaderValue" class="mb-2" :color="yellow">

Leave a comment