ant-design/components/badge/demo/overflow.md

28 lines
525 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 6
title:
zh-CN: 封顶数字
en-US: Customized overflow count
2016-03-31 09:40:55 +08:00
---
2015-12-22 14:34:31 +08:00
## zh-CN
2015-12-22 14:34:31 +08:00
超过 `overflowCount` 的会显示为 `${overflowCount}+`
## en-US
`${overflowCount}+` is displayed when count is larger than `overflowCount`.
2015-12-22 14:34:31 +08:00
````jsx
import { Badge } from 'antd';
2015-12-22 14:49:46 +08:00
ReactDOM.render(<div>
<Badge count={99} overflowCount={10}>
<a href="#" className="head-example"></a>
</Badge>
<Badge count={1000} overflowCount={999}>
<a href="#" className="head-example"></a>
</Badge>
</div>, mountNode);
2015-12-22 14:34:31 +08:00
````