var { Router,
Route,
IndexRoute,
IndexLink,
hashHistory,
Link } = ReactRouter;
它使我不得不编写长代码。例如:
我可以在React中写这个:
<Route path="/acc" component={CLAccounts} />
<Route path="/acc/:year" component={CLAccounts} />
<Route path="/acc/:year/:month" component={CLAccounts} />
而不是:
<ReactRouterRoute path="/acc" component={CLAccounts} />
<ReactRouterRoute path="/acc/:year" component={CLAccounts} />
<ReactRouterRoute path="/acc/:year/:month" component={CLAccounts} />