We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Node: version 8.9.0 VGG: version 2.1.1
Problem Adding tag="div" still uses fieldset when the schema has grouped fields.
Example:
<vue-form-generator :model="model" :schema="fields" :options="formOptions" ref="someForm" tag="div" > </vue-form-generator>
This works with a regular schema.
Ex. (works)
schema: { fields: [ { type: 'input', inputType: 'input', label: 'First Name', }, { type: 'input', inputType: 'input', label: 'Last Name', }, ], }
With a grouped schema it does not work.
Ex. (does not work)
schema: { groups: [ { fields: [ { type: 'input', inputType: 'input', label: 'First Name', }, ], }, { fields: [ { type: 'input', inputType: 'input', label: 'Last Name', }, ], }, ], }
Expected Outcome When adding tag to VFG and having grouped fields, it will change fieldset to the tag specified.
The text was updated successfully, but these errors were encountered:
Awesome. Thank you!
Sorry, something went wrong.
Where can I read the documentation about tag?
Successfully merging a pull request may close this issue.
Node: version 8.9.0
VGG: version 2.1.1
Problem
Adding tag="div" still uses fieldset when the schema has grouped fields.
Example:
This works with a regular schema.
Ex. (works)
With a grouped schema it does not work.
Ex. (does not work)
Expected Outcome
When adding tag to VFG and having grouped fields, it will change fieldset to the tag specified.
The text was updated successfully, but these errors were encountered: