Files
orion-visor/orion-ops-ui/src/router/typings.d.ts

17 lines
329 B
TypeScript
Raw Normal View History

2023-07-24 10:05:07 +08:00
import 'vue-router';
declare module 'vue-router' {
interface RouteMeta {
2023-07-27 18:48:15 +08:00
permission?: string;
requiresAuth: boolean;
icon?: string;
locale?: string;
hideInMenu?: boolean;
hideChildrenInMenu?: boolean;
activeMenu?: string;
order?: number;
noAffix?: boolean;
ignoreCache?: boolean;
2023-07-24 10:05:07 +08:00
}
}