ant-design/components/radio/demo/radiogroup.md

39 lines
639 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 1
title:
2017-03-24 19:54:00 +08:00
zh-CN: 单选组合
en-US: Radio Group
---
## zh-CN
2015-07-17 16:06:46 +08:00
2015-08-21 18:24:09 +08:00
一组互斥的 Radio 配合使用。
2015-07-17 16:06:46 +08:00
## en-US
2017-03-24 19:54:00 +08:00
A group of radio components.
2017-02-13 10:55:53 +08:00
```jsx
import { Radio } from 'antd';
2018-06-27 15:55:04 +08:00
const App = () => {
const [value, setValue] = React.useState(1);
2018-06-27 15:55:04 +08:00
const onChange = e => {
console.log('radio checked', e.target.value);
setValue(e.target.value);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
return (
<Radio.Group onChange={onChange} value={value}>
<Radio value={1}>A</Radio>
<Radio value={2}>B</Radio>
<Radio value={3}>C</Radio>
<Radio value={4}>D</Radio>
</Radio.Group>
);
};
2016-03-04 12:07:17 +08:00
ReactDOM.render(<App />, mountNode);
```