You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
472 B

# 迷你型
- order: 5
用在弹出框等较狭窄的容器内。
---
````jsx
var Tabs = antd.Tabs;
var TabPane = Tabs.TabPane;
9 years ago
ReactDOM.render(
<Tabs defaultActiveKey="2" size="mini">
<TabPane tab="选项卡一" key="1">选项卡一内容</TabPane>
<TabPane tab="选项卡二" key="2">选项卡二内容</TabPane>
<TabPane tab="选项卡三" key="3">选项卡三内容</TabPane>
</Tabs>
, document.getElementById('components-tabs-demo-size'));
````