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-28 17:57:44 +08:00

106 lines
2.6 KiB
JavaScript

export const sidebar = {
'/en/': [
{
text: 'Guide',
items: [
{ text: 'Button', link: '/en/' },
],
},
],
'/': [
{
text: '介绍',
items: [
{ text: '简介', link: '/' },
],
},
{
text: '前端部分功能介绍',
items: [
{text:'dashboard 流程', link: '/dashboardFlow'},
{text:'主题简单使用教程', link: '/themeUse'},
{text:'国际化使用教程', link: '/i18nUse'},
],
},
{
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: 'nzDataList',
link: '/nzDataList',
items:[
{text:'searchBox', link: '/searchBox'},
{text:'searchInput', link: '/searchInput'},
{text:'bottomBox', link: '/bottomBox'},
]
},
{ text: 'nzDetailView', link: '/nzDetailView',},
{ text: 'deleteButton', link: '/deleteButton',},
{ text: 'rightBox', link: '/rightBox',},
]
}
],
},
{
text: '其他组件',
items:[
{text:'clickSearch', link: '/clickSearch'},
{text:'promqlInput', link: '/promqlInput'},
{
text:'pickTime',
link: '/pickTime',
items: [
{text:'multipleTime', link: '/multipleTime'}
]
},
]
},
{
text: '引用插件',
items:[
{text:'le5le', link: '/le5le'},
{text:'map', link: '/map'},
{text:'xterm', link: '/xterm'},
{text:'时间插件', link: '/time'},
{text:'Quill', link: '/quill'},
{text:'D3', link: '/d3'},
{text:'selectpage', link: '/selectpage'},
]
},
{
text: '注意事项',
link: '/note',
items: []
}
],
};