2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-23 11:00:32 +03:00

Fix syntax error.

This commit is contained in:
Le Minh Tri
2018-11-23 01:15:13 +07:00
committed by GitHub
parent 4e7428eaae
commit 23edf46917
+2 -2
View File
@@ -476,8 +476,8 @@ Other demos:
</tab-content> </tab-content>
<template slot="footer" slot-scope="props"> <template slot="footer" slot-scope="props">
<div class=wizard-footer-left> <div class="wizard-footer-left">
<wizard-button v-if="props.activeTabIndex > 0 && !props.isLastStep" @click.native="props.prevTab()" :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>
<div class="wizard-footer-right"> <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> <wizard-button v-if="!props.isLastStep"@click.native="props.nextTab()" class="wizard-footer-right" :style="props.fillButtonStyle">Next</wizard-button>