# umi3.x **Repository Path**: showtan/umi3.x ## Basic Information - **Project Name**: umi3.x - **Description**: react+umi3.x+dva+echarts+component - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2021-11-11 - **Last Updated**: 2021-11-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### 路由结构 ``` routes: [{ path: '/', component: '../layouts/index', routes: [ { path: '/home', component: '@/pages/home' }, { path: '/unit', component: '@/pages/unit' } { path: '/fetch', component: '@/pages/fetch' }, { path: '/dva', component: '@/pages/dva' } ] }] ``` --- ### 目录结构 ``` src |_assets 图片 |-components |_Search.tsx 搜索组件 |-layouts |_index.tsx 入口文件 |_login.tsx 登陆路由指向文件 |_main.tsx 首页路由嵌套文件 |_index.less |_pages |_dva Table+Dva分页示例 |_services |_models |_index.tsx |_fetch fetch原生用法示例 |_home echarts渲染示例 |_unit 搜索组件示例 |_404.tsx |_global.less |_index.tsx 登录页面 ```