mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
63 lines
1.0 KiB
JavaScript
63 lines
1.0 KiB
JavaScript
const apis = [
|
|
{
|
|
name: 'Props',
|
|
descKey: 'app.api.title.props',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: [
|
|
{
|
|
name: 'type',
|
|
descKey: 'app.api.button.desc.type',
|
|
type: '',
|
|
enum: 'text,primary',
|
|
defVal: '',
|
|
list: []
|
|
},
|
|
{
|
|
name: 'size',
|
|
descKey: 'app.api.button.desc.size',
|
|
type: 'String',
|
|
enum: 'medium,small,mini',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Slots',
|
|
descKey: 'app.api.title.slots',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: [
|
|
{
|
|
name: '—',
|
|
desc: '按钮内容',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Events',
|
|
descKey: 'app.api.title.events',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: []
|
|
},
|
|
{
|
|
name: 'Methods',
|
|
descKey: 'app.api.title.methods',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
|
|
export default apis
|