2 回答

TA貢獻1811條經(jīng)驗 獲得超4個贊
<Router>
<div>
<Nav/>
<Route path="/" render={() => (<Redirect to="/home"/>)}></Route >
<Route path="/comment" component={CommentBox}></Route>
<Route path="/home" component={Home}></Route>
<Route path="/productList" component={ProductList}></Route>
<Route path="/showdetail" component={ShowDetail}></Route>
<Route path="/showdetail/:id" component={ShowDetail}></Route>
<Route path="/login" component={Login}></Route>
<Route path="/private" component={Private}></Route>
</div>
</Router>
添加回答
舉報