mirror of
https://github.com/VisActor/VTable
synced 2024-11-22 18:57:38 +00:00
21 lines
260 B
TypeScript
21 lines
260 B
TypeScript
export const menus = [
|
|
{
|
|
menu: 'listTable',
|
|
children: [
|
|
{
|
|
path: 'list',
|
|
name: 'list'
|
|
}
|
|
]
|
|
},
|
|
{
|
|
menu: 'pivotTable',
|
|
children: [
|
|
{
|
|
path: 'pivot',
|
|
name: 'pivot-basic'
|
|
}
|
|
]
|
|
}
|
|
];
|