我想在<AppBar />
中显示一个title
,它以某种方式从当前路由传递进来。
在React路由器v4中,<AppBar />
如何能够将当前路由传递到它的title
道具中?
<Router basename='/app'>
<main>
<Menu active={menu} close={this.closeMenu} />
<Overlay active={menu} onClick={this.closeMenu} />
<AppBar handleMenuIcon={this.handleMenuIcon} title='Test' />
<Route path='/customers' component={Customers} />
</main>
</Router>
是否有方法从<Route />
上的自定义prop
传递自定义标题?