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.
|
|
|
---
|
|
|
|
order: 99
|
|
|
|
debug: true
|
|
|
|
title:
|
|
|
|
zh-CN: Badge style
|
|
|
|
en-US: 测试 Badge 的样式
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
测试 Badge 的样式。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Test Badge style.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { Radio, Badge } from 'antd';
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<Radio.Group buttonStyle="solid">
|
|
|
|
<Badge count={1}>
|
|
|
|
<Radio.Button value={1}>Click Me</Radio.Button>
|
|
|
|
</Badge>
|
|
|
|
<Badge count={2}>
|
|
|
|
<Radio.Button value={2}>Not Me</Radio.Button>
|
|
|
|
</Badge>
|
|
|
|
</Radio.Group>,
|
|
|
|
mountNode,
|
|
|
|
);
|
|
|
|
```
|