2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
|
|
|
title: 基本
|
|
|
|
---
|
2015-09-01 13:59:07 +08:00
|
|
|
|
|
|
|
简单的徽章展示。
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Badge } from 'antd';
|
2015-09-01 13:59:07 +08:00
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(
|
2015-11-04 18:00:14 +08:00
|
|
|
<Badge count={5}>
|
2015-09-01 13:59:07 +08:00
|
|
|
<a href="#" className="head-example"></a>
|
|
|
|
</Badge>
|
2015-12-29 12:08:58 +08:00
|
|
|
, mountNode);
|
2015-09-01 13:59:07 +08:00
|
|
|
````
|
|
|
|
|
2015-09-18 17:24:14 +08:00
|
|
|
````css
|
2015-09-01 13:59:07 +08:00
|
|
|
.ant-badge {
|
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
.head-example {
|
|
|
|
width: 42px;
|
|
|
|
height: 42px;
|
|
|
|
border-radius: 6px;
|
|
|
|
background: #eee;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2015-09-18 17:24:14 +08:00
|
|
|
````
|