Files
caszl_server/admin/typings/router.d.ts

15 lines
276 B
TypeScript
Raw Normal View History

2023-11-01 22:29:43 +08:00
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;
}
2023-10-29 18:37:44 +08:00
}