feat: add sidenav in RouteObject

This commit is contained in:
p-sw 2024-06-01 01:56:31 +09:00
parent 3feef38eeb
commit ce0b587777

View File

@ -15,5 +15,27 @@ export default {
name: "Github",
eq: () => false
}
],
sideNav: {
"Documents": [
{
path: "/docs",
name: "Introduction",
eq: (pathname: string) => pathname === "/docs"
},
{
path: "/docs/installation",
name: "Installation",
eq: (pathname: string) => pathname === "/docs/installation"
}
],
"Components": [
{
path: "/docs/components/button",
name: "Button",
eq: (pathname: string) => pathname === "/docs/components/button"
}
]
}
}