mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
64 lines
935 B
JavaScript
64 lines
935 B
JavaScript
const apis = [
|
|
{
|
|
name: 'Props',
|
|
descKey: 'app.api.title.props',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: [
|
|
{
|
|
name: 'type',
|
|
desc: '类型',
|
|
type: '',
|
|
enum: 'text,primary',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Slots',
|
|
desc: '插槽',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: [
|
|
{
|
|
name: '—',
|
|
desc: '按钮内容',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Events',
|
|
desc: '事件',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: [
|
|
{
|
|
name: 'click',
|
|
desc: '点击时会触发该事件',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
},
|
|
{
|
|
name: 'Methods',
|
|
desc: '方法',
|
|
type: '',
|
|
enum: '',
|
|
defVal: '',
|
|
list: []
|
|
}
|
|
]
|
|
|
|
export default apis
|