ant-design/components/tabs/demo/vertical-left.md

22 lines
476 B
Markdown
Raw Normal View History

2015-10-22 23:54:56 +08:00
# 垂直
- order: 6
选项卡在左边。
---
````jsx
import { Tabs } from 'antd';
const TabPane = Tabs.TabPane;
2015-10-22 23:54:56 +08:00
ReactDOM.render(
<Tabs defaultActiveKey="1" tabPosition="left">
<TabPane tab="选项卡一" key="1">选项卡一内容</TabPane>
<TabPane tab="选项卡二" key="2">选项卡二内容</TabPane>
<TabPane tab="选项卡三长" key="3">选项卡三内容</TabPane>
</Tabs>
, document.getElementById('components-tabs-demo-vertical-left'));
````