26 lines
418 B
JavaScript
26 lines
418 B
JavaScript
export const sidebar = {
|
|
'/en/': [
|
|
{
|
|
text: 'Guide',
|
|
items: [
|
|
{ text: 'Button', link: '/en/' },
|
|
],
|
|
},
|
|
],
|
|
'/': [
|
|
{
|
|
text: '介绍',
|
|
items: [
|
|
{ text: '简介', link: '/' },
|
|
],
|
|
},
|
|
{
|
|
text: '组件',
|
|
items: [
|
|
{ text: 'chartList', link: '/chartList' },
|
|
{ text: 'panelChart', link: '/panelChart' }
|
|
],
|
|
}
|
|
],
|
|
};
|