2021-12-14 10:51:07 +08:00
|
|
|
import { RouteLocationNormalized } from "vue-router";
|
|
|
|
|
|
|
|
|
|
export interface toRouteType extends RouteLocationNormalized {
|
|
|
|
|
meta: {
|
2021-12-24 10:55:59 +08:00
|
|
|
keepAlive?: boolean;
|
2021-12-14 10:51:07 +08:00
|
|
|
refreshRedirect: string;
|
2021-12-24 10:55:59 +08:00
|
|
|
dynamicLevel?: string;
|
2021-12-14 10:51:07 +08:00
|
|
|
};
|
|
|
|
|
}
|