feat: add sidenav in RouteObject
This commit is contained in:
parent
3feef38eeb
commit
ce0b587777
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user