StepHeader
Displays the current step number and title in multi-step form flows. Provides a visual indicator of progress position.
Basic Usage
Demo
vue
<StepHeader :step="1" title="Personal Information" />
<StepHeader :step="2" title="Contact Details" />
<StepHeader :step="3" title="Review & Submit" />Props
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| steprequired | number | — | The current step number to display. |
| titlerequired | string | — | The title of the current step. |