FE-Driver / vue-beauty

Beautiful UI components build with vue and ant design
https://fe-driver.github.io/vue-beauty
MIT License
2.11k stars 249 forks source link

Consistent naming #266

Open KrishnaPG opened 6 years ago

KrishnaPG commented 6 years ago

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.