Files
wireguard-dashboard-admin/src/router/types.ts
xiaoxian521 749633e32c perf: theme
2021-12-24 10:55:59 +08:00

10 lines
216 B
TypeScript

import { RouteLocationNormalized } from "vue-router";
export interface toRouteType extends RouteLocationNormalized {
meta: {
keepAlive?: boolean;
refreshRedirect: string;
dynamicLevel?: string;
};
}