react-router组件
import { Switch, Prompt } from"react-router-dom"
Prompt组件:
<Prompt when={true} message="提示消息">when为boolean值,true为会提示消息,false则不会提示
Redirect组件:
<Redirect path="/home" to="/about">或<Route path="/home" render={() => <Redirect to="/about">}>
match对象:匹配路由参数的对象,有属性url、path、isExact属性
Switch组件:
只渲染所匹配到的第一个