Is it possible to use consistent names for all data options? For example,
v-radio-group uses {value: '1', text: ''} where as v-select uses {value: '1', label: ''}
That is, one component is using text and other is using label.
This is fine for static components. But it would greatly help if all components use just same naming convention for "dynamic components" and "creating dynamic forms".
For example, if both radio group and select component use just label as their property then. it would be easy to generate the JSON dynamically on the fly and use component :is= dynamic vue option to supply it.
Is it possible to use consistent names for all data options? For example,
v-radio-group
uses{value: '1', text: ''}
where asv-select
uses{value: '1', label: ''}
That is, one component is using
text
and other is usinglabel
.This is fine for static components. But it would greatly help if all components use just same naming convention for "dynamic components" and "creating dynamic forms".
For example, if both radio group and select component use just
label
as their property then. it would be easy to generate the JSON dynamically on the fly and usecomponent :is=
dynamic vue option to supply it.