ant-design-vue/components/badge/index.zh-CN.md

24 lines
865 B
Markdown
Raw Normal View History

2018-02-07 18:44:11 +08:00
## API
2018-03-09 13:26:34 +08:00
2018-03-09 17:50:33 +08:00
````html
<a-badge :count="5">
2018-02-07 18:44:11 +08:00
<a href="#" class="head-example" />
</a-badge>
2018-03-09 17:50:33 +08:00
````
2018-02-07 18:44:11 +08:00
2018-03-09 17:50:33 +08:00
```html
<a-badge :count="5" />
````
2018-02-07 18:44:11 +08:00
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
2018-03-09 17:50:33 +08:00
| count | 展示的数字,大于 overflowCount 时显示为 `${overflowCount}+`,为 0 时隐藏 | number\|string | |
2018-02-07 18:44:11 +08:00
| dot | 不展示数字,只有一个小红点 | boolean | false |
| offset | 设置状态点的位置偏移,格式为 [x, y] | [number, number] | - |
| overflowCount | 展示封顶的数字值 | number | 99 |
| showZero | 当数值为 0 时,是否展示 Badge | boolean | false |
| status | 设置 Badge 为状态点 | Enum{ 'success', 'processing, 'default', 'error', 'warning' } | '' |
| text | 在设置了 `status` 的前提下有效,设置状态点的文本 | string | '' |
2018-03-09 17:50:33 +08:00
| numberStyle | 设置状态点的样式 | object | '' |