Files
FastapiAdmin/fastdocs
zhangtao e159b31e62 feat: Add role code to system_role.json and update system_users.json creator_id to null
fix: Refactor initialize.py to handle nested children data during initialization

feat: Implement tree structure traversal functions in common_util.py

chore: Update requirements.txt to specify sqlalchemy-crud-plus version and add rich

refactor: Change API endpoints in dept.ts and menu.ts to return tree structure

feat: Add code field to role, dept, and menu interfaces in respective TypeScript files

fix: Update dept and role Vue components to display and handle code field

docs: Add comprehensive project documentation for FastAPI Vue3 Admin
2025-09-15 00:19:11 +08:00
..

fastdocs

项目结构

fastapi_vue3_admin/fastdocs
├─ .vitepress           # 静态资源文件
│  ├─ cache             # 缓存
│  ├─ theme             # 主题
│  └─ config.js         # 配置文件
├─ src                  # 源代码
│  ├─ about             # 关于
│  ├─ guide.md          # 指南
│  └─ index.md          # 首页
├─ package.json         # 项目依赖文件件
└─ README.md            # 项目说明文档

快速开始

# 进入前端工程目录
cd fastdocs
# 安装依赖
pnpm install
# 运行文档工程
pnpm run docs:dev
# 构建文档工程
pnpm run docs:build