我正在尝试做这样的事情:
render() {
let a = <a className="nav-link" href={this.props.href} />
if (this.props.hasCollapse) {
a = <a className="nav-link"
href={this.props.href}
data-toggle="collapse"
data-target={this.props.collapseId} />
}
return (
{a}
<i className="fas fa-fw fa-cog"></i>
<span>{this.props.title}</span>
{a}
)
}
其中{a}返回的 被hasCollapse属性确定的适当版本替换。我怎样才能做到这一点?
慕森卡
茅侃侃
相关分类