mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
916 B
916 B
Badge
- category: Components
- chinese: 徽标数
- type: 展示
图标右上角的圆形徽标数字。
何时使用
一般出现在通知图标或头像的右上角,用于显示需要处理的消息条数,通过醒目视觉形式吸引用户处理。
API
<Badge count={5}>
<a href="#" className="head-example"></a>
</Badge>
<Badge count={5} />
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
count | 展示的数字,大于 overflowCount 时显示为 ${overflowCount}+ ,为 0 时隐藏 |
Number | ||
overflowCount | 展示封顶的数字值 | Number | 99 | |
dot | 不展示数字,只有一个小红点 | boolean | false |