From bccf4eebb3596b130b7e4cb1cabb627a22cb5a53 Mon Sep 17 00:00:00 2001 From: Outpox Date: Fri, 17 Aug 2018 14:20:12 +0200 Subject: [PATCH] fix: destructuration doesn't work, the parameter(s) has to be passed directly --- src/components/VTour.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VTour.vue b/src/components/VTour.vue index 89cbd60..9410943 100644 --- a/src/components/VTour.vue +++ b/src/components/VTour.vue @@ -99,7 +99,7 @@ export default { } }, methods: { - start ({ startStep }) { + start (startStep) { // Wait for the DOM to be loaded, then start the tour setTimeout(() => { this.customCallbacks.onStart()