forked from ant-design/ant-design
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
50 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# 位置 | ||
|
||
- order: 6 | ||
|
||
有四个位置,`tabPosition="left|right|top|bottom"`。 | ||
|
||
--- | ||
|
||
````jsx | ||
import { Tabs, Select } from 'antd'; | ||
const TabPane = Tabs.TabPane; | ||
const Option = Select.Option; | ||
|
||
const Demo = React.createClass({ | ||
getInitialState() { | ||
return { | ||
tabPosition: 'top', | ||
}; | ||
}, | ||
changeTabPosition(tabPosition) { | ||
this.setState({ tabPosition }); | ||
}, | ||
render() { | ||
return <div> | ||
<div style={{marginBottom: 16}}> | ||
页签位置: | ||
<Select value={this.state.tabPosition} onChange={this.changeTabPosition} | ||
dropdownMatchSelectWidth={false}> | ||
<Option value="top">top</Option> | ||
<Option value="bottom">bottom</Option> | ||
<Option value="left">left</Option> | ||
<Option value="right">right</Option> | ||
</Select> | ||
</div> | ||
<Tabs tabPosition={this.state.tabPosition}> | ||
<TabPane tab="选项卡一" key="1">选项卡一内容</TabPane> | ||
<TabPane tab="选项卡二" key="2">选项卡二内容</TabPane> | ||
<TabPane tab="选项卡三" key="3">选项卡三内容</TabPane> | ||
</Tabs> | ||
</div>; | ||
} | ||
}); | ||
|
||
ReactDOM.render(<Demo />, document.getElementById('components-tabs-demo-position')); | ||
```` |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters