File size: 411 Bytes
c9d0005 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | export default {
type: 'object',
properties: {
input: {
title: '输入框',
type: 'string',
widget: 'input'
},
select: {
title: '下拉框',
type: 'string',
widget: 'select',
props: {
options: [
{ label: '早', value: 'a' },
{ label: '中', value: 'b' },
{ label: '晚', value: 'c' }
]
}
}
}
};
|