delowardev / vue3-circle-progress

Highly customizable & lightweight circular progressbar component for Vue 3, built with SVG and extensively customizable
https://codesandbox.io/s/determined-dawn-3ybev?file=/src/App.vue
MIT License
36 stars 14 forks source link

Can percent props take a string type? #3

Closed w2xi closed 3 years ago

w2xi commented 3 years ago

2

delowardev commented 3 years ago

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