feat(ui): 新增系统分类菜单

This commit is contained in:
廖彦棋
2024-03-14 15:17:53 +08:00
parent ec5ad809f2
commit 3866319373
8 changed files with 257 additions and 45 deletions

View File

@@ -5,5 +5,13 @@ declare module "*.vue" {
const component: DefineComponent<{}, {}, any>;
export default component;
}
import 'vue-router'
declare module 'vue-router' {
interface RouteMeta {
title?: string
icon?: any
permission?: boolean | string | string[]
}
}
declare const __AUTH_KEY: string;