mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 06:12:44 +08:00
11 lines
185 B
TypeScript
11 lines
185 B
TypeScript
declare interface Router extends Record<string, any> {
|
|
path: string;
|
|
meta?: {
|
|
auth?: boolean;
|
|
};
|
|
}
|
|
|
|
declare interface TabBar extends Record<string, any> {
|
|
list: Router[];
|
|
}
|