3.2.1 • Published 4 days ago

circle-progress.vue v3.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 days ago

Welcome to circle-progress.vue!

Circle Progress Bar

Hi! Highly customizable & lightweight & responsive circular progressbar component for Vue 3, built with SVG and extensively customizable.

Installation

npm install --save circle-progress.vue

Adding into app

import { CircleProgressBar } from 'circle-progress.vue';

<CircleProgressBar :value="7" :max="10" />

Props

Please write me, if you need more props :) You can customize your progress bars as you want. For example:

PropsTypeDescriptionDefault
max*NumberMax value- (required)
value*NumberCurrent value- (required)
sizeNumber, StringSize of the circle'124'
colorFilledStringCircle color if limit exceed'#FF5533'
colorUnfilledStringCircle color if limit not exceed'#3BB44A'
colorBackStringBack circle color'#ECEEF1'
percentageBooleaNShow percentagefalse
roundedBooleaNRounding the circle linefalse
animationDurationStringAnimation Duration'0.5s'
strokeWidthStringCircle Stroke width'5px'
reversedFillingBooleanEnable reversed fillingfalse

Other

Also you can use slots to throw your custom content. For example:

<CircleProgressBar  
  :value="20"  
  :max="80"  
  percentage  
 rounded>
{{ value }} / {{ max }}
</CircleProgressBar>
3.2.1

4 days ago

3.2.0

5 months ago

3.1.0

8 months ago

3.0.3

11 months ago

3.0.2

11 months ago

3.0.1

11 months ago

3.0.0

11 months ago