匹配路由

@5.xx版本

  import { Route,Switch } from 'react-router-dom'
  import Home from './pages/Home'
  import About from './pages/About'
<Switch>
     <Route path="/about" component={About} />
     <Route path="/home" component={Home} />
</Switch>

@6.xx版本

  import { Route,Routes } from 'react-router-dom'
  import Home from './pages/Home'
  import About from './pages/About'
<Routes>
     <Route path="about" element={<About/>} />
     <Route path="home" element={<Home/>} />
</Routes>

 

posted @ 2021-11-26 17:07  一江春水向东刘小姐  阅读(38)  评论(0编辑  收藏  举报