2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-07-11 11:45:42 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 讨嫌的小红点
|
|
|
|
en-US: Red badge
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2016-07-11 11:45:42 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-09-01 13:59:07 +08:00
|
|
|
没有具体的数字。
|
|
|
|
|
2016-07-11 11:45:42 +08:00
|
|
|
## en-US
|
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
This will simply display a red badge, without a specific count. If count equals 0, it won't display the dot.
|
2016-07-11 11:45:42 +08:00
|
|
|
|
2019-05-07 14:57:32 +08:00
|
|
|
```jsx
|
2019-08-13 14:07:17 +08:00
|
|
|
import { Badge } from 'antd';
|
2019-11-28 12:34:33 +08:00
|
|
|
import { NotificationOutlined } from '@ant-design/icons';
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2017-02-19 20:27:06 +08:00
|
|
|
ReactDOM.render(
|
|
|
|
<div>
|
|
|
|
<Badge dot>
|
2019-11-28 12:34:33 +08:00
|
|
|
<NotificationOutlined />
|
2017-02-19 20:27:06 +08:00
|
|
|
</Badge>
|
2018-02-24 11:40:44 +08:00
|
|
|
<Badge count={0} dot>
|
2019-11-28 12:34:33 +08:00
|
|
|
<NotificationOutlined />
|
2018-02-24 11:40:44 +08:00
|
|
|
</Badge>
|
2017-02-19 20:27:06 +08:00
|
|
|
<Badge dot>
|
|
|
|
<a href="#">Link something</a>
|
|
|
|
</Badge>
|
2018-06-27 15:55:04 +08:00
|
|
|
</div>,
|
2019-05-07 14:57:32 +08:00
|
|
|
mountNode,
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|
2015-09-01 13:59:07 +08:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.anticon-notification {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
line-height: 16px;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
</style>
|