路由配置问题import React from 'react';import { Router, Route } from 'dva/router';import IndexPage from './routes/IndexPage';import Products from './routes/Products';function RouterConfig({ history }) { return ( <Router history={history}> <Route path="/" component={IndexPage}/> <Route path="/Products" component={Products}/> </Router> ); }export default RouterConfig;这里提示Router中只能有一个Route配置,删掉一个就可以了,但是我要如何配置多个路由?
添加回答
举报
0/150
提交
取消