You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
314 B

---
order: 1
title: 大数字
---
超过 99 的会显示为 `99+`
````jsx
import { Badge } from 'antd';
9 years ago
ReactDOM.render(<div>
<Badge count={99}>
<a href="#" className="head-example"></a>
</Badge>
<Badge count={200}>
<a href="#" className="head-example"></a>
</Badge>
</div>, mountNode);
````