1234567891011121314151617181920212223242526272829 |
- //the ts of router
- import { RouteRecordRaw } from 'vue-router'
- /*此处扩展的类型*/
- export interface RouteItemTy {
- hidden?: boolean
- alwaysShow?: boolean
- code?: number
- name?: string
- fullPath?: string
- path?: string
- meta?: {
- title: string
- icon?: string
- affix?: boolean
- activeMenu?: string
- breadcrumb?: boolean
- roles?: Array<string>
- elSvgIcon?: string
- code?: number
- cachePage?: boolean
- leaveRmCachePage?: boolean
- closeTabRmCache?: boolean
- }
- children?: RouterTy
- redirect?: string
- }
- export type RouterRowTy = RouteRecordRaw & RouteItemTy
- export type RouterTy = Array<RouterRowTy>
|