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.
 
 

417 B

order title
1 [{zh-CN 大数字} {en-US Overflowed count}]

zh-CN

超过 99 的会显示为 99+

en-US

99+ is displayed when count is larger than 99.

import { Badge } from 'antd';

ReactDOM.render(<div>
  <Badge count={99}>
    <a href="#" className="head-example" />
  </Badge>
  <Badge count={200}>
    <a href="#" className="head-example" />
  </Badge>
</div>, mountNode);