API 使用参考
用于给父路由提供默认跳转,与 不同的是,URL 路径会发生变化。
// 下面的路由可以将首页重定向到 /hello <Route path="/" component={App}> <IndexRedirect to="/hello" /> </Route>
to { String } #
需要重定向到的新路由,除了没有 from 属性外,其余与 <Redirect> 组件相同。
<Redirect>