dva-router https://dvajs.com/api/#dva-router

    /src/router.js

    1. import { Router, Route, routerRedux } from 'dva/router';
    2. import IndexPage from './routes/Home';
    3. function RouterConfig({ history, app }) {
    4. console.log('app', app)
    5. return (
    6. <Router history={history}>
    7. <Switch>
    8. <Route path="/" exact component={IndexPage} />
    9. </Switch>
    10. </Router>
    11. );
    12. }

    image.png