UnisKB/ui/src/components/dynamics-form/constructor/data.ts

28 lines
388 B
TypeScript
Raw Normal View History

2024-10-28 04:09:17 +00:00
const input_type_list = [
{
label: '文本框',
value: 'TextInput'
},
{
label: '滑块',
value: 'Slider'
},
{
label: '开关',
value: 'SwitchInput'
},
{
label: '单选框',
value: 'SingleSelect'
},
{
label: '日期',
value: 'DatePicker'
},
{
label: 'JSON文本框',
value: 'JsonInput'
}
]
export { input_type_list }