feat: 添加mock数据,给导航添加选中标识

This commit is contained in:
zdl
2025-10-17 15:01:35 +08:00
parent bc407d2a35
commit 2d9d047a9f
16 changed files with 2120 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
// src/mocks/handlers/index.js
// 汇总所有 Mock Handlers
import { authHandlers } from './auth';
import { accountHandlers } from './account';
// 可以在这里添加更多的 handlers
// import { userHandlers } from './user';
// import { eventHandlers } from './event';
export const handlers = [
...authHandlers,
...accountHandlers,
// ...userHandlers,
// ...eventHandlers,
];