refactor(projects): 精简版+动态路由权限初步

This commit is contained in:
Soybean
2022-01-03 22:20:10 +08:00
parent 7a0648dba5
commit de2057f141
354 changed files with 2053 additions and 22117 deletions

25
src/typings/common/env.d.ts vendored Normal file
View File

@@ -0,0 +1,25 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue';
const component: DefineComponent<{}, {}, any>;
export default component;
}
interface ImportMetaEnv {
/** 项目基本地址 */
readonly BASE_URL: string;
/** 项目名称 */
readonly VITE_APP_NAME: string;
/** 项目标题 */
readonly VITE_APP_TITLE: string;
/** 项目描述 */
readonly VITE_APP_DESC: string;
/** 网路请求环境类型 */
readonly VITE_HTTP_ENV: Service.HttpEnv;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}