All Projects → bastidest → Vue Step Progress

bastidest / Vue Step Progress

Licence: mit
A simple Vue component that displays a Progress Bar with labels for each step

Projects that are alternatives of or similar to Vue Step Progress

React Nprogress
⌛️ A React primitive for building slim progress bars.
Stars: ✭ 173 (+565.38%)
Mutual labels:  component, progress, progress-bar, progressbar
React Sweet Progress
A way to quickly add a progress bar to react app 🌈
Stars: ✭ 239 (+819.23%)
Mutual labels:  progress, progress-bar, progressbar
Alive Progress
A new kind of Progress Bar, with real-time throughput, ETA, and very cool animations!
Stars: ✭ 2,940 (+11207.69%)
Mutual labels:  progress, progress-bar, progressbar
ProBar
this script will allow you to configure a progress bar with a timer with other options
Stars: ✭ 0 (-100%)
Mutual labels:  progress, progress-bar, progressbar
Ruby Progressbar
Ruby/ProgressBar is a text progress bar library for Ruby.
Stars: ✭ 1,378 (+5200%)
Mutual labels:  progress, progress-bar, progressbar
Tqdm
A Fast, Extensible Progress Bar for Python and CLI
Stars: ✭ 20,632 (+79253.85%)
Mutual labels:  progress, progress-bar, progressbar
react-sweet-progress
A way to quickly add a progress bar to react app 🌈
Stars: ✭ 250 (+861.54%)
Mutual labels:  progress, progress-bar, progressbar
Radialprogressbar
Radial ProgressBar inspired by Apple Watch OS. It is highly Customisable
Stars: ✭ 141 (+442.31%)
Mutual labels:  progress, progress-bar, progressbar
angular-progress-bar
This component allow you to easy incorporate progress-bar to angular/ionic project, providing binding and color options
Stars: ✭ 26 (+0%)
Mutual labels:  progress, progress-bar, progressbar
Roundprogresstextview
TextView with Round Pogress
Stars: ✭ 18 (-30.77%)
Mutual labels:  progress, progress-bar, progressbar
Multiprogressview
📊 An animatable view that depicts multiple progresses over time. Modeled after UIProgressView
Stars: ✭ 614 (+2261.54%)
Mutual labels:  progress, progress-bar, progressbar
Delayedprogress
ProgressDialog that waits a minimum time to be dismissed before showing. Once visible, the ProgressDialog will be visible for a minimum amount of time to avoid "flashes" in the UI.
Stars: ✭ 95 (+265.38%)
Mutual labels:  progress, progress-bar, progressbar
VHProgressBar
Vartical and Horizontal ProgressBar
Stars: ✭ 23 (-11.54%)
Mutual labels:  progress, progress-bar, progressbar
mp-progress
专注于小程序圆环形进度条的小工具
Stars: ✭ 72 (+176.92%)
Mutual labels:  progress, progress-bar, progressbar
LineProgressbar
A light weight jquery progressbar plugin
Stars: ✭ 34 (+30.77%)
Mutual labels:  progress, progress-bar, progressbar
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+2523.08%)
Mutual labels:  progress, progress-bar, progressbar
Rsup Progress
❤️ A simple progress bar with promises support
Stars: ✭ 290 (+1015.38%)
Mutual labels:  progress-bar, progressbar
Progressstatusbar
Another way to show progress. A progress View over the system StatusBar.
Stars: ✭ 283 (+988.46%)
Mutual labels:  progress, progressbar
Qier Progress
💃 Look at me, I am a slim progress bar and very colorful / 支持彩色或单色的顶部进度条
Stars: ✭ 307 (+1080.77%)
Mutual labels:  progress, progress-bar
Progress bar
Command-line progress bars and spinners for Elixir.
Stars: ✭ 281 (+980.77%)
Mutual labels:  progress-bar, progressbar

CI FOSSA Status

Vue Step Progress Bar

Demo

demo gif

Installation

Install the plugin with npm:

npm install --save vue-step-progress

Usage

⚠️ The default settings use Font Awesome for the checkmark icon. You can change the css icon class by using the 'icon-class' prop.

Add the Library import in the components you want to use the progress bar in:

import StepProgress from 'vue-step-progress';

// import the css (OPTIONAL - you can provide your own design)
import 'vue-step-progress/dist/main.css';

// ...
// register the component in your Vue instance
  components: {
    'step-progress': StepProgress
  },
// ...

Put the step-progress element into your HTML where you want the Component to appear and pass the steps Array Prop and the current-step Number prop.

<div>
  <step-progress :steps="mySteps" :current-step="currentStep" icon-class="fa fa-check"></step-progress>
</div>

Props

steps

A string array of all steps to be displayed. The Strings will be present as labels in the component. Example:

['Step 1', 'Step 2', 'Step 3']

current-step

A simple Number prop that defines the index of the active step. Example:

2

icon-class

Optional

The css class of the checkmark icon. Default:

fa fa-check

active-color

Optional

A String prop that defines the active step color. It is red by default. Example:

blue

passive-color

Optional

A String prop that defines the passive step color. It is gray by default. Example:

black

active-thickness

Optional

A Number prop that defines the active step thickness. It is 5 by default. Example:

10

passive-thickness

Optional

A Number prop that defines the passive step thickness. It is 5 by default. Example:

10

line-thickness

Optional

A Number prop that defines the line thickness. It is 12 by default. Example:

10

Development

To setup the local development environment it is recommended to use docker. Note: this will override your current npm and node commands.

source source.sh

Install all development dependencies:

npm i

Start the development server

npm run dev

Build the dist files after changes

npm run build

Document your changes in the "Unreleased" section in CHANGELOG.MD.

Publishing

Create a the .npmrc file:

//registry.npmjs.org/:_authToken=<token>

Run

npm publish
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].