vue-form-wizard
vue-form-wizard copied to clipboard
Step slot problem
trafficstars
I followed this example https://jsfiddle.net/bt5dhqtf/705/
and when I use the template slot nav Pills just dissapear I changed to this
<wizard-step slot-scope="props" slot="step" :tab="props.tab" :transition="props.transition" :index="props.index"> </wizard-step>
And I get this error in the console Unknown custom element:
Did you make sure to import WizardStep from vue-form-wizard and include it as a component?
As mentioned above, you need to import this component.
import { FormWizard, TabContent, WizardStep } from 'vue-form-wizard'
import 'vue-form-wizard/dist/vue-form-wizard.min.css'
export default {
name: 'ComponentName',
components: {
FormWizard,
TabContent,
WizardStep
}
....
}