feat: 初始化Vue3项目基础结构,包含路由、状态管理和UI组件库

- 添加Vue3、Pinia和Vue Router作为核心依赖
- 集成Element Plus UI组件库及图标
- 配置Vite构建工具和基础开发环境
- 创建项目基础目录结构和配置文件
- 实现AI培训系统基础页面框架和功能模块
This commit is contained in:
2025-08-07 22:06:22 +08:00
commit 160a7222a8
17 changed files with 3614 additions and 0 deletions

29
my-vue-app/package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "my-vue-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"axios": "^1.10.0",
"echarts": "^5.6.0",
"element-plus": "^2.10.3",
"pinia": "^3.0.3",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@vitejs/plugin-vue": "^6.0.0",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.6",
"sass-embedded": "^1.90.0",
"tailwindcss": "^4.1.11",
"vite": "^7.0.4"
}
}