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

How add symbol % #10

Open Fabszn opened 2 years ago

Fabszn commented 2 years ago

How add '%' symbol behing percentage value ?

I saw in first example that value at center of circle is equals to '55%'.

Thanks in advance

eincipientinfo commented 2 years ago

Hey Did you find the solution?

samculo commented 2 years ago
<style lang="scss">
    .current-counter {
        &::after {
            content: "%";
        }
    }
</style>