react-router 4.0的初探
Posted 大峰1992
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-router 4.0的初探相关的知识,希望对你有一定的参考价值。
react-router 升级4.0以后 出现了 ‘react-router-dom‘
引入时要import {BrowserRouter, Route} from ‘react-router-dom‘;
<Provider store={store} key="provider">
<BrowserRouter history={history} onUpdate={() => window.scrollTo(0, 0)}>
<Root />
</BrowserRouter>
</Provider>, document.getElementById(‘root‘));
root.js页
<div>
<Route path="/" component={Loader}/>
<Route path="/wwz" component={App}/>
<Route path="/login" exact component={Login}/>
</div>
以上是关于react-router 4.0的初探的主要内容,如果未能解决你的问题,请参考以下文章