vue-easy-wizard
v1.0.14
Published
An easy-to-use wizard for vue.js
Downloads
7
Maintainers
Readme
🚀 Welcome to vue-easy-wizard!
Obs: Have bootstrap support :grin:
Install Package
npm i -S vue-easy-wizard
Install Plugin Vue
import Wizard from 'vue-easy-wizard';
import 'vue-easy-wizard/dist/Wizard.css';
Vue.use(Wizard);
Basic Usage
<Wizard>
<WizardItem :back-button="false" title="Wizard" subtitle="Step 1">
<h1> You are on the step One </h1>
<button @click="$emit('wizard:next');">
Next
</button>
</WizardItem>
<WizardItem title="Wizard" subtitle="Step 2">
<h1> You are on the step Two </h1>
<button @click="$emit('wizard:next');">
Next
</button>
</WizardItem>
<WizardItem title="Wizard" subtitle="Step 3">
<h1> You are on the step Three </h1>
<button @click="$emit('wizard:next');">
Next
</button>
</WizardItem>
<WizardItem :back-button="false" subtitle="Step 4">
<h1> You are on the step Four </h1>
<h5> But now let's go back to the previous step </h5>
<button @click="$emit('wizard:prev');">
prev
</button>
</WizardItem>
</Wizard>
Events
- To next Step:
$emit('wizard:next');
- To prev Step:
$emit('wizard:prev');
WizardItem Options
- title (required)
<WizardItem title="Wizard">
</WizardItem>
- subtitle
<WizardItem subtitle="step 1">
</WizardItem>
- Enable/Disable Back Button (true/false)
<WizardItem :back-button="false">
</WizardItem>