美文网首页
react集成react-router

react集成react-router

作者: 蜗牛_3c49 | 来源:发表于2019-08-12 23:11 被阅读0次

    先安装:

    npm install react-router

    npm install react-router-dom

    引入:

    import {HashRouter,Route,Switch } from 'react-router-dom';

    使用:

    <HashRouter>

            <Switch>

                <Route path="/hello" component={hello}/>

                <Route path="/world" component={world}></Route>

                <Route path="/" component={ini}></Route>

            </Switch>

    </HashRouter>

    ps:{}中间是路由到达的组件

    相关文章

      网友评论

          本文标题:react集成react-router

          本文链接:https://www.haomeiwen.com/subject/raqmjctx.html