mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-26 00:26:20 +08:00
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import type { RouteMeta } from 'vue-router';
|
|
export interface RouteItem {
|
|
path: string;
|
|
component: any;
|
|
meta: RouteMeta;
|
|
name?: string;
|
|
alias?: string | string[];
|
|
redirect?: string;
|
|
caseSensitive?: boolean;
|
|
children?: RouteItem[];
|
|
}
|
|
|
|
/**
|
|
* @description: Get menu return value
|
|
*/
|
|
export type getMenuListResultModel = RouteItem[];
|