64 lines
1.2 KiB
JavaScript
64 lines
1.2 KiB
JavaScript
const base = {
|
|
name: '基础',
|
|
icon: 'app',
|
|
childArr: [
|
|
{
|
|
name: 'Button',
|
|
label: '按钮',
|
|
},
|
|
{
|
|
name: 'Divider',
|
|
label: '分割线',
|
|
},
|
|
{
|
|
name: 'Fab',
|
|
label: '悬浮按钮',
|
|
},
|
|
{
|
|
name: 'Icon',
|
|
label: '图标',
|
|
},
|
|
{
|
|
name: 'Link',
|
|
label: '链接',
|
|
},
|
|
{
|
|
name: 'Layout',
|
|
label: '布局',
|
|
path: '/pages/col/col',
|
|
},
|
|
],
|
|
};
|
|
const skylineBase = {
|
|
name: '基础',
|
|
icon: 'app',
|
|
childArr: [
|
|
{
|
|
name: 'Button',
|
|
label: '按钮',
|
|
},
|
|
{
|
|
name: 'Divider',
|
|
label: '分割线',
|
|
},
|
|
{
|
|
name: 'Fab',
|
|
label: '悬浮按钮',
|
|
},
|
|
{
|
|
name: 'Icon',
|
|
label: '图标',
|
|
},
|
|
{
|
|
name: 'Link',
|
|
label: '链接',
|
|
},
|
|
{
|
|
name: 'Layout',
|
|
label: '布局',
|
|
path: '/pages/col/skyline/col',
|
|
},
|
|
],
|
|
};
|
|
export { base, skylineBase };
|