目录
umi+react+dva简单搭建一个项目框架(配置layout、antd、路由等) 创建项目 引入antd 抽离配置 config 01: config / config.js 02: config / router / router.js 03:配置layout 03_1 config.js 03_2 router.js 效果
umi+react+dva简单搭建一个项目框架(配置layout、antd、路由等)
创建项目
yarn create @umijs/ umi- app
npm create @umijs/ umi- app
yarn
yarn start
引入antd
import { Button } from "antd"
< Button type= "primary" > Primary Button< / Button>
抽离配置 config
删除根目录下的.umirc.ts 新建根目录下config/config.ts router的拆分 config / router / router.js
01: config / config.js
import { defineConfig } from 'umi' ;
import routes from './router/routes' ;
export default defineConfig ( {
nodeModulesTransform : {
type : 'none' ,
} ,
routes,
antd : {
dark : false
} ,
fastRefresh : { } ,
} ) ;
02: config / router / router.js
const routes = [
{ path : '/' , component : '@/pages/index' } ,
{ path : '/test' , component : '@/pages/test' } ,
]
export default routes
03:配置layout
03_1 config.js
import { defineConfig } from 'umi' ;
import routes from './router/routes' ;
export default defineConfig ( {
nodeModulesTransform : {
type : 'none' ,
} ,
routes,
antd : {
dark : false
} ,
fastRefresh : { } ,
layout : {
name : 'Ant Design' ,
locale : true ,
layout : 'side' ,
} ,
} ) ;
03_2 router.js
const routes = [
{
path : '/login' ,
component : '@/pages/login/Login' ,
layout : false ,
} ,
{ path : '/' , component : '@/pages/index' , name : '首页' } ,
{ path : '/test' , component : '@/pages/test' , name : '测试' } ,
{
path : '/test/detail' ,
component : '@/pages/test/Detail' ,
} ,
{
path : '/about' ,
name : '关于' ,
routes : [
{
path : '/about/about_1' ,
component : '@/pages/about/about_1/About_1' ,
name : '关于1' ,
} ,
{
path : '/about/about_2' ,
component : '@/pages/about/about_2/About_2' ,
name : '关于2' ,
} ,
] ,
} ,
] ;
export default routes;
效果