Closed mcasto closed 4 years ago
Thanks for your comments!
schema type 'group' and 'array' calls v-form-base.vue recursively. Now the props class
, col
and row
are passed correctly.
This should work with 0.2.5 - see example 'Group Controls'
group1: { type: 'group', col:6, row:{ noGutters: false }, class:'elevation-4 pa-2', schema: { A: 'text', B: 'text' } }
For the record, in case I haven't already mentioned it, I love this component. Major kudos.
I have a schema with this setup:
It works fine, but I'd like to put some gutters between the fields. I did that globally on the rest of the form with:
:row="{ justify: 'center', align: 'center', noGutters: false }"
and it works like a charm, but that global setting doesn't carry through into the grouped items.Am I overlooking something?