vue-dynamic-forms
vue-dynamic-forms copied to clipboard
Dynamic wizard
Can we create wizard dynamically
Hi @saileshkush95 , do you mean a multipage (each page a form) wizard?
Yes, I'm mean multi step form
Ok @saileshkush95 so with the current implementation, you have 2 ways to achieve that:
- Either use a
dynamic-formcomponent for each page and listen to the changes with@change="valueChange"and save all the forms values in the same object so they're available at the end or. - Use 1 (one)
dynamic-formcomponent and apply the multistep using CSS andcustomClassproperty for each field.
Defenately I'll try as you suggested.
Should the declarative form model support the concept of a "page" of fields, like you will with fieldset?