mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
resolve conflict
This commit is contained in:
commit
4669c67bc4
@ -17,6 +17,6 @@ ReactDOM.render(<div>
|
||||
<Tag>标签一</Tag>
|
||||
<Tag>标签二</Tag>
|
||||
<Tag closable onClose={onClose}>标签三</Tag>
|
||||
<Tag href="http://www.baidu.com">标签四(链接)</Tag>
|
||||
<a href="https://www.alipay.com/" target="_blank"><Tag>标签四(链接)</Tag></a>
|
||||
</div>, mountNode);
|
||||
````
|
||||
|
@ -45,7 +45,7 @@ class AntTag extends React.Component {
|
||||
transitionName={this.props.prefixCls + '-zoom'}
|
||||
onEnd={this.animationEnd.bind(this)}>
|
||||
<div data-show={!this.state.closing} className={className}>
|
||||
<a className={this.props.prefixCls + '-text'} {...this.props} />
|
||||
<span className={this.props.prefixCls + '-text'} {...this.props} />
|
||||
{close}
|
||||
</div>
|
||||
</Animate>
|
||||
|
@ -17,7 +17,6 @@
|
||||
|
||||
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
||||
|----------------|--------------------------------|------------|---------|--------|
|
||||
| href | 链接的地址,会传给 a 标签 | string | | false |
|
||||
| closable | 标签是否可以关闭 | boolean | | false |
|
||||
| onClose | 组合时根据此项判定checked | function | | 无 |
|
||||
| color | 标签的色彩 | string | blue green yellow red | 无 |
|
||||
|
Loading…
Reference in New Issue
Block a user