2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-06 21:02:27 +03:00

Merge pull request #49 from zhang-yafei/master

fix demo bug
This commit is contained in:
Cristi Jora
2017-09-26 22:26:03 +03:00
committed by GitHub
+1 -1
View File
@@ -458,7 +458,7 @@ Other demos:
<template slot="footer" scope="props">
<div class=wizard-footer-left>
<wizard-button v-if="props.activeTabIndex > 0 && !props.isLastStep" :style="props.fillButtonStyle">Previous</wizard-button>
<wizard-button v-if="props.activeTabIndex > 0 && !props.isLastStep" @click.native="props.prevTab()" :style="props.fillButtonStyle">Previous</wizard-button>
</div>
<div class="wizard-footer-right">
<wizard-button v-if="!props.isLastStep"@click.native="props.nextTab()" class="wizard-footer-right" :style="props.fillButtonStyle">Next</wizard-button>