--- order: 6 title: 位置 --- 有四个位置,`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 (
页签位置:
选项卡一内容 选项卡二内容 选项卡三内容
); }, }); ReactDOM.render(, mountNode); ````