diff --git a/src/components/FormWizard.vue b/src/components/FormWizard.vue index dc2426d..98fecee 100644 --- a/src/components/FormWizard.vue +++ b/src/components/FormWizard.vue @@ -232,7 +232,7 @@ }, addTab (item) { const index = this.$slots.default.indexOf(item.$vnode) - item.tabId = `t-${item.title.replace(/ /g, '')}${index}` + item.tabId = `${item.title.replace(/ /g, '')}${index}` this.tabs.splice(index, 0, item) // if a step is added before the current one, go to it if (index < this.activeTabIndex + 1) { diff --git a/src/components/TabContent.vue b/src/components/TabContent.vue index 051001a..02f0b42 100644 --- a/src/components/TabContent.vue +++ b/src/components/TabContent.vue @@ -1,9 +1,9 @@