为了账号安全,请及时绑定邮箱和手机立即绑定

更改之后出现问题,是引用版本错误吗?

<script type="text/babel">
    var {
        Router,
        Route,
        IndexRouter,
        IndexLink,
        Link,
        hashHistory
    }=ReactRouter;
    var destination=document.querySelector('#container');
    var Home=React.createClass({
        render:function () {
         return(
             <div>
                 <h2>望天门山</h2>
                 <p>天门中断楚江开,碧水东流至此回</p>
                 <p>两岸青山相对出,孤帆一片日边来</p>
             </div>
             );
        }
    });
    var APP=React.createClass({
        render:function () {
         return(
             <div>
                 <h1>Simple SAP</h1>
                 <ul className='header'>
                     <li>李白</li>
                     <li>杜甫</li>
                     <li>李商隐</li>
                 </ul>
                 <div className="content">
                     {this.props.children}
                 </div>
             </div>
         );
        }
    });

    ReactDOM.render(
        <Router history={hashHistory}>
            <Route path="/" component={APP}>
                <IndexRouter component={Home}/>
            </Route>
        </Router>,
        destination
    );
</script>


正在回答

1 回答

很可能是版本问题 一部分需要从ReactRouterDom中引入吧

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

更改之后出现问题,是引用版本错误吗?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信