delowardev/vue3-circle-progress

Can percent props take a string type?

Closed this issue · 1 comments

Hi @w2xi

Did you manage to resolve your issue?
Currently, it doesn't have an option for customizing the text but you can use a CSS hack here.

This code below will add a percent sign after the number.

span.current-counter::after {
    content: '%';
}

Thanks