A <Router> may have only one child element

路由配置问题


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;

https://img2.mukewang.com/5c4bfa6600014b1405070088.jpg

这里提示Router中只能有一个Route配置,删掉一个就可以了,但是我要如何配置多个路由?

https://img1.mukewang.com/5c4bfa690001ed7007200074.jpg

倚天杖
浏览 875回答 1
1回答

大话西游666

用一个div把这两个Route包起来就好了,报错已经写得很清楚了
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript