mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 12:39:49 +08:00
753c01ae18
fix antd.notification
48 lines
1.2 KiB
Markdown
48 lines
1.2 KiB
Markdown
# 顶部导航
|
|
|
|
- order: 0
|
|
|
|
水平的顶部导航菜单。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Menu, Icon } from 'antd';
|
|
const SubMenu = Menu.SubMenu;
|
|
|
|
const App = React.createClass({
|
|
getInitialState() {
|
|
return {
|
|
current: 'mail'
|
|
}
|
|
},
|
|
handleClick(e) {
|
|
console.log('click ', e);
|
|
this.setState({
|
|
current: e.key
|
|
});
|
|
},
|
|
render() {
|
|
return <Menu onClick={this.handleClick} selectedKeys={[this.state.current]} mode="horizontal">
|
|
<Menu.Item key="mail">
|
|
<Icon type="mail" />导航一
|
|
</Menu.Item>
|
|
<Menu.Item key="app">
|
|
<Icon type="appstore" />导航二
|
|
</Menu.Item>
|
|
<SubMenu title={<span><Icon type="setting" />导航 - 子菜单</span>}>
|
|
<Menu.Item key="setting:1">选项1</Menu.Item>
|
|
<Menu.Item key="setting:2">选项2</Menu.Item>
|
|
<Menu.Item key="setting:3">选项3</Menu.Item>
|
|
<Menu.Item key="setting:4">选项4</Menu.Item>
|
|
</SubMenu>
|
|
<Menu.Item key="alipay">
|
|
<a href="http://www.alipay.com/" target="_blank">导航四 - 链接</a>
|
|
</Menu.Item>
|
|
</Menu>;
|
|
}
|
|
});
|
|
|
|
ReactDOM.render(<App />, document.getElementById('components-menu-demo-horizontal'));
|
|
````
|