You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

65 lines
1.4 KiB

import type { RouteRecordRaw, RouteMeta } from 'vue-router'
import { RoleEnum } from '@/enums/roleEnum'
import { defineComponent } from 'vue'
export type Component<T = any> = ReturnType<typeof defineComponent> | (() => Promise<typeof import('*.vue')>) | (() => Promise<T>)
// @ts-ignore
export interface AppRouteRecordRaw extends Omit<RouteRecordRaw, 'meta'> {
keepAlive?: boolean
visible?: boolean
icon?: string
name: string
sort?: number
parentId?: number
meta: RouteMeta
component?: Component | string
components?: Component
componentName?: string
children?: AppRouteRecordRaw[]
props?: Recordable
fullPath?: string
}
export interface MenuTag {
// 类型
type?: 'primary' | 'error' | 'warn' | 'success'
// 内容
content?: string
// 为true则显示小圆点
dot?: boolean
}
export interface Menu {
// 菜单名
name: string
// 菜单图标,如果没有,则会尝试使用route.meta.icon
icon?: string
// 菜单路径
path: string
// path contains param, auto assignment.
paramPath?: string
// 是否禁用
disabled?: boolean
// 子菜单
children?: Menu[]
// 菜单排序
orderNo?: number
roles?: RoleEnum[]
meta?: Partial<RouteMeta>
// 菜单标签设置
tag?: MenuTag
// 是否隐藏菜单
hideMenu?: boolean
}
export interface MenuModule {
orderNo?: number
menu: Menu
}
// export type AppRouteModule = RouteModule | AppRouteRecordRaw;
export type AppRouteModule = AppRouteRecordRaw