This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nezha-fronted/nezha-docs/docs/.vitepress/sidebar.js
2024-05-24 18:27:29 +08:00

55 lines
1.2 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',},
]
}
],
}
],
};