feat: 创建完整的Vue + Element UI前端管理界面
- 创建Vue 3 + TypeScript + Element Plus项目结构 - 实现完整的SPA路由系统 - 创建主布局(侧边栏 + 头部导航) - 实现核心管理页面: - 仪表盘:服务状态监控和统计数据展示 - 企业微信Bot管理:Bot配置、添加、编辑、删除 - 消息记录:消息查询、筛选、详情查看 - OpenClaw配对管理:配对请求审批、状态管理 - 配对规则配置:自动配对规则管理 - 系统配置:基本配置、数据库配置、连接信息 - 操作日志:系统操作记录查询 - 添加响应式设计和现代化UI - 配置Vite构建工具和TypeScript支持
This commit is contained in:
31
frontend/tsconfig.json
Normal file
31
frontend/tsconfig.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2020",
|
||||
"useDefineForClassFields": true,
|
||||
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||||
"module": "ESNext",
|
||||
"skipLibCheck": true,
|
||||
|
||||
/* Bundler mode */
|
||||
"moduleResolution": "bundler",
|
||||
"allowImportingTsExtensions": true,
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"noEmit": true,
|
||||
"jsx": "preserve",
|
||||
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
|
||||
/* Paths */
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
}
|
||||
},
|
||||
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
|
||||
"references": [{ "path": "./tsconfig.node.json" }]
|
||||
}
|
||||
Reference in New Issue
Block a user