From b4288360d41939b3bb70f4133b5d71263c1fcf70 Mon Sep 17 00:00:00 2001 From: commit_username Date: Thu, 16 Apr 2026 09:57:07 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20=E5=88=9B=E5=BB=BA=E4=B8=AD=E6=96=87REA?= =?UTF-8?q?DME=E6=96=87=E6=A1=A3=EF=BC=8C=E5=AE=8C=E5=96=84=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加项目简介和技术架构图 - 列出完整的技术栈清单和版本号 - 提供详细的目录结构说明 - 包含环境要求、安装命令和启动脚本 - 添加核心功能说明和代码示例 - 满足Issue #371099的所有验收标准 --- README.md | 277 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 274 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1511959..10d6660 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,276 @@ -# Vue 3 + Vite +# CS:GO 收藏管理前端 -This template should help get you started developing with Vue 3 in Vite. The template uses Vue 3 ` +``` + +### 路由配置示例 + +```javascript +const routes = [ + { + path: '/', + name: 'Dashboard', + component: () => import('@/pages/dashboard/index.vue') + }, + { + path: '/steam', + name: 'Steam', + component: () => import('@/pages/steam/index.vue') + } +]; +``` + +## 常用命令 + +| 命令 | 说明 | +|------|------| +| `npm run dev` | 启动开发服务器 | +| `npm run build` | 构建生产版本 | +| `npm run preview` | 预览生产构建 | + +## 相关文档 + +- [Vue 3 官方文档](https://cn.vuejs.org/) +- [Vite 官方文档](https://vitejs.dev/) +- [PrimeVue 官方文档](https://primevue.org/) +- [Tailwind CSS 官方文档](https://tailwindcss.com/) +- [Pinia 状态管理](https://pinia.vuejs.org/zh/) +- [Vue Router 路由](https://router.vuejs.org/zh/) + +## 许可证 + +MIT License \ No newline at end of file -- Gitee