This commit is contained in:
liuhanhua
2025-12-01 10:09:46 +08:00
parent 6cdc748f9e
commit f8069035a8
21 changed files with 4006 additions and 103 deletions

12
config/routes.js Normal file
View File

@@ -0,0 +1,12 @@
// 简化的路由配置
const routes = [
{ path: '/', component: './index' },
{ path: '/login', component: './login' },
{ path: '/docs', component: './docs' },
// 404 页面
{ path: '/*', component: './404' },
];
export default routes;