Quasar Stepper
Quasar Stepper conveys progress through numbered steps. Steppers display progress through a sequence of logical and numbered steps. They may also be used for navigation. It’s usually useful when the user has to follow steps to complete a process, like in a wizard.
The stepper component is built from three different child components:
- QStepper - main Stepper encapsulating component
- QStep - individual steps
- QStepperNavigation - helper for encapsulating Stepper navigation buttons (within QStep or globally for the stepper as direct child of QStepper)
Installation
Edit /quasar.conf.js
:framework: {
components: [
'QStepper',
'QStep',
'QStepperNavigation'
]
}
Basic Usage
Here’s a small example showcasing a very basic Stepper to understand how components fit together.<q-stepper ref="stepper">
<!-- Step: -->
<q-step default title="First Step" subtitle="Here we go">
...Step content, components, ...
</q-step>
<!-- Step: -->
<q-step title="Step 2">...</q-step>
<!-- Step: -->
<q-step title="Step 3" subtitle="Review and submit">...</q-step>
<!--
Optional.
"Globally" available Stepper navigation which means
that it will be visible regardless of the current step.
If we'd put QStepperNavigation under a QStep then we'd
be using it for that step only.
-->
<q-stepper-navigation>
<q-btn
flat
@click="$refs.stepper.previous()"
label="Back"
/>
<q-btn
@click="$refs.stepper.next()"
label="Next"
/>
</q-stepper-navigation>
</q-stepper>
A more involved example. This one doesn’t uses QStepperNavigation as direct child of QStepper because each step has navigation configured. Notice the additional attributes on each component below. They will be detailed in next sections.<q-stepper color="secondary" ref="stepper" alternative-labels>
<q-step default name="first" title="Ad style">
<div v-for="n in 10">Step 1</div>
<!-- Navigation for this step at the end of QStep-->
<q-stepper-navigation>
<q-btn color="secondary" @click="$refs.stepper.next()" label="Continue" />
</q-stepper-navigation>
</q-step>
<q-step error name="second" title="Custom channels" subtitle="Alert message">
<div v-for="n in 10">Step 2</div>
<q-stepper-navigation>
<q-btn color="secondary" @click="$refs.stepper.next()" label="Next" />
<q-btn color="secondary" flat @click="$refs.stepper.previous()" label="Back" />
</q-stepper-navigation>
</q-step>
<q-step name="third" title="Get code">
<div v-for="n in 3">Step 3</div>
<q-stepper-navigation>
<q-btn color="secondary" @click="$refs.stepper.next()" label="Next" />
<q-btn color="secondary" flat @click="$refs.stepper.previous()" label="Back" />
</q-stepper-navigation>
</q-step>
<q-step name="fifth" disable title="Disabled">
<div v-for="n in 3">Step 4</div>
<q-stepper-navigation>
<q-btn color="secondary" @click="$refs.stepper.next()" label="Next" />
<q-btn color="secondary" flat @click="$refs.stepper.previous()" label="Back" />
</q-stepper-navigation>
</q-step>
<q-step name="fourth" title="Review and Finalize">
<div v-for="n in 3">Step 5</div>
<q-stepper-navigation>
<q-btn color="secondary" @click="$refs.stepper.next()" label="Next" />
<q-btn color="secondary" flat @click="$refs.stepper.previous()" label="Back" />
</q-stepper-navigation>
</q-step>
</q-stepper>
QStepper (Parent)
Vue Property | Type | Description |
---|---|---|
color |
String | Main color of Stepper, from Quasar Color Palette. |
vertical |
Boolean | Set Stepper as vertical instead of default horizontal. |
alternative-labels |
Boolean | Use alternative labels (applies only to horizontal Stepper). |
contractable |
Boolean | Labels are hidden on narrow windows. |
no-header-navigation |
Boolean | (Quasar v0.15.7+) Disable ability to navigate to previous steps through header. |
order |
Number / String | If you add/remove Steps dynamically, it’s good to use this prop to specify the order in which Steps should be displayed. |
done-icon |
String, Boolean | Used to change the display of the Step icon, when the step is finished. Default is the “check” icon. |
active-icon |
String, Boolean | Used to change the icon, when a Step is selected. Default is the “edit” icon. |
error-icon |
String / Boolean | Used to change the icon, when there is an error in a Step. Default is the “warning” icon. |
You can also control the current step by using v-model
on QStep. More details in next section.
Vue Method | Description |
---|---|
goToStep(String) |
Moves the user to the given Step, defined by Step’s “name” property. |
next() |
Stepper goes to the next step. |
previous() |
Stepper goes to the previous step. |
reset() |
Returns the stepper back to the first step. |
Component events:
Vue Event | Description |
---|---|
@step |
Emitted when navigating to another step. |
Using v-model
Each QStep has a name
prop (which is optional). Use this prop along with v-model
to control the current step.
The example below shows how you can use v-model
alone to control navigation. Notice the @click
events. If you dynamically insert/remove Steps it’s better to use a Vue reference on QStepper and call next()
or previous()
methods since these methods are not binded to specific Step names.
<template> |
QStep (Child)
Vue Property | Type | Description |
---|---|---|
name |
Number, String | Step name, used by QStepper’s v-model or goToStep() method. |
default |
Boolean | (Optional) Use it on only one Step. Becomes default selected one. |
error |
Boolean | Mark Step as having an error. |
default |
Boolean | Use on only one Step to make it be the active one by default. Previous steps will be marked as done . Useful when refreshing page. |
title |
String | Step title. |
subtitle |
String | Step’s additional information along the title. |
icon |
String | Step’s icon when Step isn’t finished yet. If no active-icon is specified, then this icon will be used when Step is currently active too. |
active-icon |
String | The icon used for the Step when it’s currently active. Defaults to icon prop value when active-icon isn’t specified. |
done-icon |
String | The icon to use for Step when it’s finished. |
error-icon |
String | The icon to use for Step when it’s marked as having an error. |
disable |
Boolean | Step is disabled. |
Methods for this component:
Vue Method | Description |
---|---|
select() |
Stepper selects this step as current one. |
QStepperNavigation (Child of QStepper or QStep)
This component allows you to place buttons within QStepper or QStep to navigate through the steps. It is up to you to add whatever buttons you require.
<q-stepper ref="myStepper"> |
More Examples
Vertical Stepper
It is also possible to build a stepper, which presents itself in a vertical fashion. To do this, simply use vertical
property on QStepper:
<q-stepper vertical> |
When using a vertical Stepper, it doesn’t really make sense to use a “global” QStepper navigation. Instead, use navigation within each QStep.
Displaying Progress
A common case is where you need to take an asynchronouse action (like an Ajax call) before going to next step. Make use of QInnerLoading component for this:
<q-stepper> |
Specific Steps Order
If you dynamically add/remove Steps, then you need to specify the order
property (for ALL QSteps) so that the Stepper will know the actual order of Steps. By using v-if
or v-for
directives, Vue & Quasar can’t ensure Steps will be registered in the order they are placed in DOM.
IMPORTANT
Just make sure that when you useorder
you apply it to all QSteps and don’t leave out any step without it. Either useorder
for all QSteps or don’t use it at all.
<q-stepper> |
The order
property applied to all QStep doesn’t has to be strictly growing consecutively. Setting order
as 10
, 100
and 52
will work too.