Socket
Socket
Sign inDemoInstall

circle-progress.vue

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    circle-progress.vue

![Circle Progress Bar](https://lh6.googleusercontent.com/fLQLNNyHZoBeyAkqRDEBqZwm5GN_ROBnm0OVIiZ4gw4DJa6i2KbGwiOisZl6UdyA9c4=w2400)


Version published
Weekly downloads
172
decreased by-17.31%
Maintainers
1
Install size
11.7 kB
Created
Weekly downloads
 

Readme

Source

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>

Keywords

FAQs

Last updated on 07 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc