| 12345678910111213141516171819 |
- declare namespace ROUTER {
- type RoutesProps = RouteRecordRaw & {
- title: string,
- link: boolean
- }
- type RouterRecords = {
- navbar: {
- route: RoutesProps[],
- selectPath: string
- },
- sider: {
- route: RoutesProps[],
- selectPath: string,
- openKeys: string[]
- },
- }
- }
|