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

I had mistakenly missed a function call.

This commit is contained in:
JVB
2018-01-12 11:25:09 -08:00
parent d49807b27e
commit 7276fcdc52
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -384,8 +384,8 @@
return
}
let newTab = this.tabs[index]
if (newTab && newTab.afterTabChange !== undefined) {
newTab.afterTabChange()
if (newTab && newTab.afterChange !== undefined) {
newTab.afterChange()
}
},
changeTab (oldIndex, newIndex, emitChangeEvent = true) {