mirror of
https://gitee.com/easii/mapstruct-plus.git
synced 2025-12-07 09:38:45 +08:00
24 lines
518 B
TypeScript
24 lines
518 B
TypeScript
import {sidebar} from "vuepress-theme-hope";
|
|
|
|
export const zhSidebar = sidebar({
|
|
"/": [
|
|
{
|
|
text: '介绍',
|
|
prefix: 'introduction/',
|
|
link: 'introduction/',
|
|
children: 'structure'
|
|
},
|
|
{
|
|
text: "指南",
|
|
icon: "note",
|
|
prefix: "guide/",
|
|
children: "structure",
|
|
},
|
|
{
|
|
text: '更新日志',
|
|
prefix: 'release/',
|
|
children: 'structure'
|
|
}
|
|
],
|
|
});
|