簡體   English   中英

Material-UI BottomNavigationItem URL

[英]Material-UI BottomNavigationItem URL

UI在組件上。 我有一個<BottomNavigationItem />組件。 實際上,這呈現為<button> 如何實際使它呈現/導航到URL?

class FooterNavigation extends Component {
  state = {
    selectedIndex: 0,
  };

  select = (index) => this.setState({selectedIndex: index});

  render() {
    return (
        <footer className="mdl-mini-footer">
            <Paper zDepth={1}>
            <BottomNavigation selectedIndex={this.state.selectedIndex}>
            <BottomNavigationItem
                label="Reviews"
                icon={reviewIcon}
                onClick={() => this.select(0)}
            />
            </BottomNavigation>
            </Paper>
        </footer>
    );
  }
}

只需添加containerElement={<Link to="/home"/>} ,別忘了從react-router-dom導入Link

因此它將是這樣的:

   <BottomNavigationItem
                containerElement={<Link to="/home"/>}
                label="Reviews"
                icon={reviewIcon}
                onClick={() => this.select(0)}
            />

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM