# yun-template **Repository Path**: gcddblue/yun-template ## Basic Information - **Project Name**: yun-template - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-28 - **Last Updated**: 2025-12-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Vue 3 + TypeScript + Vite ``` 组件库 https://www.antdv.com/docs/vue/introduce-cn ``` src/ ├── api/ # API 接口管理 │ ├── user.ts │ └── index.ts ├── assets/ # 静态资源 │ ├── images/ │ └── styles/ ├── components/ # 公共组件 │ ├── BasicTable/ │ └── BasicForm/ ├── hooks/ # 组合式函数 │ ├── useRequest.ts │ └── usePermission.ts ├── layouts/ # 布局组件 │ ├── BasicLayout.vue │ └── BlankLayout.vue ├── router/ # 路由配置 │ ├── routes.ts │ └── index.ts ├── store/ # Pinia 状态管理 │ ├── modules/ │ └── index.ts ├── utils/ # 工具函数 │ ├── request.ts │ └── storage.ts ├── views/ # 页面 │ ├── login/ │ └── dashboard/ ├── App.vue └── main.ts ```bash yarn pnpm install ``` - run ```bash yarn dev pnpm dev ``` ```bash yarn build pnpm build ``` # Git 提交规范 ## Commit Message 格式 每次提交的信息包含三个部分:Header、Body 和 Footer。 ``` (): // 空一行 // 空一行