反应哈希路由和子路由

时间:2018-10-22 21:50:23

标签: reactjs redux react-router

例如,我目前有路线结构 #/home #/dashboard

但是如何实现子路由或子路由,例如

#/home/dashboard

<HashRouter>
              <main className="h-100">
                <Switch>
                  <Route exact path='/home' component={Login} />
                  <Route path='/dashboard' component={Dashboard} />
                </Switch>
              </main>
            </HashRouter>

1 个答案:

答案 0 :(得分:2)

例如,您可以简单地将路线更改为子路线

<Route exact path='/home/subroute' component={Login} />