diff --git a/src/components/VTour.vue b/src/components/VTour.vue index 3f2fd9f..8d390f1 100644 --- a/src/components/VTour.vue +++ b/src/components/VTour.vue @@ -119,7 +119,7 @@ export default { if (this.currentStep > this.minStep && !this.isFinished) this.currentStep-- }, nextStep () { - if (this.currentStep < this.maxStep && !this.isFinished) this.currentStep++ + if (this.currentStep < this.maxStep -1 && !this.isFinished) this.currentStep++ }, stop () { this.currentStep = -1