StepProgress

StepProgress is a an step progress bar component. Here's how to use it...

import StepProgress from "vue3-step-progress";

<step-progress :steps="steps" :active-step="currentStep" />

Where steps are the list of labels to be displayed for each step and currentStep is the currently active step.

const steps = [ "Step 1", "Step 2", "Step 3" ] const currentStep = ref(1)

currentStep 1 indicates that the current active step is Step 1

Last Updated:
Contributors: subhamghimire