BinarCode/vue-form-wizard

Hide all tabs

SimonFricker opened this issue · 6 comments

How do you hide/remove all tabs?

I have the same question, I want my form to be separated in steps, but dont want the titles or step numbers be shown.

@SimonFricker What did you do?

I've added the following CSS in my .vue file:

/deep/ .vue-form-wizard {
	.wizard-header {
		display: none;
	}
	ul.wizard-nav-pills,
	.wizard-progress-with-circle {
		display: none !important;
	}
}

I hope it help.

Using CSS is not an ideal solution as the tabs still get rendered.

@SimonFricker Then, Explain us what is the correct way.