【发布时间】:2018-01-05 22:37:37
【问题描述】:
您能告诉我如何使用任何库来实现选项卡吗? 我点击此链接并尝试制作标签 https://toddmotto.com/creating-a-tabs-component-with-react/ 但没有成功。 这是我的代码:
https://codesandbox.io/s/D9Q6qWPEn
import React, {Component} from 'react';
class Tabs extends Component {
constructor() {
super();
this.state= {
selected:0
}
}
_renderContent() {
return (
<div className="tabs__content">
{this.props.children[this.state.selected]}
</div>
);
}
render() {
return (
<div className="tabs">
{this._renderContent()}
</div>
)
}
}
export default Tabs;
我无法在点击后显示标签和单独的内容 有更新吗?
【问题讨论】:
-
您有遇到什么特殊问题吗?
-
@zerkms 我无法显示标签,点击后会有单独的内容
标签: javascript reactjs react-native react-router react-redux