import type { RouteRecordRaw } from 'vue-router';import { RoleEnum } from '/@/enums/roleEnum';export interface RouteMeta { // title title: string; // Whether to ignore permissions ignoreAuth?: boolean; // role info roles?: RoleEnum[]; // Whether not to cache ignoreKeepAlive?: boolean; // Is it fixed on tab affix?: boolean; // icon on tab icon?: string; // Jump address frameSrc?: string; // Outer link jump address externalLink?: string; // current page transition transitionName?: string; // Whether the route has been dynamically added hideBreadcrumb?: boolean; // disabled redirect disabledRedirect?: boolean;