The circular progress never reaches 100%
tdoan2010 opened this issue · 1 comments
tdoan2010 commented
In your demo, the circular progress never reaches 100% (1 full round). When the process finished, the circular progress always stops at a random place.
I tried to fix it, but no success. Do you have any idea?
eno112 commented
I also confirmed the issue in the demo at the moment.
In my environment, there seems to be a problem with the transition property of v-progress-circular in vuetify.
By applying the following css, it became the expected behavior.
.v-progress-circular__underlay, .v-progress-circular__overlay {
transition: none !important;
}