mirror of
https://gitee.com/easii/mapstruct-plus.git
synced 2025-12-07 17:48:35 +08:00
20 lines
432 B
TypeScript
20 lines
432 B
TypeScript
import {sidebar} from "vuepress-theme-hope";
|
|
|
|
export const zhSidebar = sidebar({
|
|
"/mapstruct/": 'structure',
|
|
"/release": 'structure',
|
|
"/": [
|
|
{
|
|
text: '介绍',
|
|
prefix: 'introduction/',
|
|
link: 'introduction/',
|
|
children: 'structure'
|
|
},
|
|
{
|
|
text: "指南",
|
|
prefix: "guide/",
|
|
children: "structure",
|
|
}
|
|
],
|
|
});
|