feat(projects): 添加常用组件、composables函数

This commit is contained in:
Soybean
2021-12-12 17:28:39 +08:00
parent e755caabf2
commit 230a50a4cf
87 changed files with 5424 additions and 2071 deletions

12
src/typings/env.d.ts vendored
View File

@ -1,12 +1,14 @@
interface ImportMetaEnv {
/** 项目标题 */
VITE_APP_TITLE: string;
/** 项目标题(文本) */
VITE_APP_TITLE_LABEL: string;
/** 项目基本地址 */
VITE_BASE_URL: string;
/** 项目名称 */
VITE_APP_NAME: string;
/** 项目标题 */
VITE_APP_TITLE: string;
/** 项目描述 */
VITE_APP_DESC: string;
/** 网路请求环境类型 */
VITE_HTTP_ENV: string;
VITE_HTTP_ENV: 'DEV' | 'PROD' | 'STAGING';
/** 网路请求地址 */
VITE_HTTP_URL: string;
}