Files
quantulr d2c335a4e5 bugfix
2023-11-01 22:29:43 +08:00

15 lines
276 B
TypeScript

import "vue-router";
declare module "vue-router" {
// 扩展 RouteMeta
interface RouteMeta {
type?: string;
perms?: string;
title?: string;
icon?: string;
hidden?: boolean;
activeMenu?: string;
hideTab?: boolean;
keepAlive?: boolean;
}
}