import type { RouteRecordRaw } from 'vue-router'; import type { Component } from 'vue'; // 定义递归类型以将 RouteRecordRaw 的 component 属性更改为 string type RouteRecordStringComponent = { children?: RouteRecordStringComponent[]; component: T; } & Omit; type ComponentRecordType = Record Promise>; export type { ComponentRecordType, RouteRecordStringComponent };