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

41 lines
733 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.
```tsx
import type { RadioChangeEvent } from 'antd';
import { Radio } from 'antd';
2022-05-21 22:14:15 +08:00
import React, { useState } from 'react';
2018-06-27 15:55:04 +08:00
const App: React.FC = () => {
const [value, setValue] = useState(1);
2018-06-27 15:55:04 +08:00
const onChange = (e: RadioChangeEvent) => {
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
export default App;
```