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">
Source:stackexchange.com