dva-router https://dvajs.com/api/#dva-router
/src/router.js
import { Router, Route, routerRedux } from 'dva/router';import IndexPage from './routes/Home';function RouterConfig({ history, app }) {console.log('app', app)return (<Router history={history}><Switch><Route path="/" exact component={IndexPage} /></Switch></Router>);}

