SeregPie / VueWordCloud

Generates a cloud out of the words.
https://seregpie.github.io/VueWordCloud/
MIT License
385 stars 60 forks source link

The circular progress never reaches 100% #52

Open tdoan2010 opened 3 years ago

tdoan2010 commented 3 years ago

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 1 year ago

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;
}