65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
export const sidebar = {
|
|
'/en/': [
|
|
{
|
|
text: 'Guide',
|
|
items: [
|
|
{ text: 'Button', link: '/en/' },
|
|
],
|
|
},
|
|
],
|
|
'/': [
|
|
{
|
|
text: '介绍',
|
|
items: [
|
|
{ text: '简介', link: '/' },
|
|
],
|
|
},
|
|
{
|
|
text: '组件',
|
|
items: [
|
|
{
|
|
text: 'chartList',
|
|
link: '/chartList',
|
|
items: [
|
|
{ text: 'chartHeader', link: '/chartHeader' },
|
|
{
|
|
text: 'panelChart',
|
|
link: '/panelChart',
|
|
items: [
|
|
{
|
|
text: 'chart',
|
|
link: '/chart',
|
|
items: [
|
|
{text: 'chartTimeSeries', link: '/chartTimeSeries'},
|
|
{text: 'chartAutotopology', link: '/chartAutotopology'},
|
|
{text: 'chartDiagram', link: '/chartDiagram'},
|
|
{text: 'chartLegend', link: '/chartLegend'},
|
|
]
|
|
}
|
|
]
|
|
},
|
|
]
|
|
},
|
|
{
|
|
text: 'table',
|
|
link: '/table',
|
|
items: [
|
|
{ text: 'deleteButton', link: '/deleteButton',},
|
|
{
|
|
text: 'nzDataList',
|
|
link: '/nzDataList',
|
|
items:[
|
|
{text:'searchBox', link: '/searchBox'},
|
|
{text:'searchInput', link: '/searchInput'},
|
|
{text:'bottomBox', link: '/bottomBox'},
|
|
]
|
|
},
|
|
{ text: 'rightBox', link: '/rightBox',},
|
|
{ text: 'nzDetailView', link: '/nzDetailView',},
|
|
]
|
|
}
|
|
],
|
|
}
|
|
],
|
|
};
|