mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-18 06:03:38 +08:00
update tag demo and document
This commit is contained in:
parent
2e0be628a7
commit
09c0bd7c4b
@ -14,8 +14,9 @@ function onClose() {
|
||||
}
|
||||
|
||||
React.render(<div>
|
||||
<Tag href="http://www.baidu.com">标签一</Tag>
|
||||
<Tag closable onClose={onClose}>标签二</Tag>
|
||||
<Tag>标签三</Tag>
|
||||
<Tag>标签一</Tag>
|
||||
<Tag>标签二</Tag>
|
||||
<Tag closable onClose={onClose}>标签三</Tag>
|
||||
<Tag href="http://www.baidu.com">标签四(链接)</Tag>
|
||||
</div>, document.getElementById('components-tag-demo-basic'));
|
||||
````
|
||||
|
@ -4,3 +4,19 @@
|
||||
- chinese: 标签
|
||||
|
||||
---
|
||||
|
||||
进行标记和分类的小标签。
|
||||
|
||||
## 何时使用
|
||||
|
||||
- 用于标记事物的属性和维度。
|
||||
- 进行分类。
|
||||
|
||||
## API
|
||||
|
||||
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|
||||
|----------------|--------------------------------|------------|---------|--------|
|
||||
| href | 链接的地址,会传给 a 标签 | string | | false |
|
||||
| closable | 标签是否可以关闭 | boolean | | false |
|
||||
| onClose | 组合时根据此项判定checked | function | | 无 |
|
||||
| color | 标签的色彩 | string | blue green yellow red | 无 |
|
||||
|
Loading…
Reference in New Issue
Block a user