mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
28 lines
521 B
Markdown
28 lines
521 B
Markdown
---
|
|
order: 6
|
|
title:
|
|
zh-CN: 封顶数字
|
|
en-US: Customized overflow count
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
超过 `overflowCount` 的会显示为 `${overflowCount}+`。
|
|
|
|
## en-US
|
|
|
|
`${overflowCount}+` is displayed when count is larger than `overflowCount`.
|
|
|
|
````jsx
|
|
import { Badge } from 'antd';
|
|
|
|
ReactDOM.render(<div>
|
|
<Badge count={99} overflowCount={10}>
|
|
<a href="#" className="head-example" />
|
|
</Badge>
|
|
<Badge count={1000} overflowCount={999}>
|
|
<a href="#" className="head-example" />
|
|
</Badge>
|
|
</div>, mountNode);
|
|
````
|