- 新增Pinia状态管理用于用户认证和全局状态 - 实现JWT认证工具类和API服务封装 - 添加路由权限控制和全局错误处理 - 重构项目结构,新增layouts目录和组件 - 完善工具函数库和常量定义 - 新增404页面和API接口模块 - 优化移动端导航和响应式布局 - 更新依赖并添加开发工具支持
27 lines
603 B
JSON
27 lines
603 B
JSON
{
|
|
"name": "aristockai-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"serve": "vue-cli-service serve",
|
|
"build": "vue-cli-service build",
|
|
"lint": "vue-cli-service lint"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.3.4",
|
|
"element-plus": "^2.10.4",
|
|
"pinia": "^3.0.3",
|
|
"vue": "^3.2.45",
|
|
"vue-router": "^4.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/cli-service": "~5.0.8",
|
|
"@vue/compiler-sfc": "^3.2.45",
|
|
"autoprefixer": "^10.4.19",
|
|
"eslint": "^8.34.0",
|
|
"eslint-plugin-vue": "^9.9.0",
|
|
"postcss": "^8.4.38",
|
|
"tailwindcss": "^3.4.1"
|
|
}
|
|
}
|