diff --git a/src/components/VTour.vue b/src/components/VTour.vue index e3df960..89cbd60 100644 --- a/src/components/VTour.vue +++ b/src/components/VTour.vue @@ -99,11 +99,11 @@ export default { } }, methods: { - start ({ startIdx }) { + start ({ startStep }) { // Wait for the DOM to be loaded, then start the tour setTimeout(() => { this.customCallbacks.onStart() - this.currentStep = typeof startIdx !== 'undefined' ? parseInt(startIdx, 10) : 0 + this.currentStep = typeof startStep !== 'undefined' ? parseInt(startStep, 10) : 0 }, this.customOptions.startTimeout) }, previousStep () {