2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 0
|
2016-07-10 08:55:43 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 基本使用
|
|
|
|
en-US: Basic Usage
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-06-02 18:15:32 +08:00
|
|
|
|
2016-07-10 08:55:43 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-06-16 14:54:31 +08:00
|
|
|
基本使用。
|
2015-05-16 15:03:33 +08:00
|
|
|
|
2016-07-10 08:55:43 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Basic Usage.
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Select } from 'antd';
|
2022-05-23 14:37:16 +08:00
|
|
|
import React from 'react';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const handleChange = (value: string) => {
|
2016-02-17 18:04:42 +08:00
|
|
|
console.log(`selected ${value}`);
|
2022-05-19 09:46:26 +08:00
|
|
|
};
|
2015-06-09 21:16:59 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2020-03-14 00:04:54 +08:00
|
|
|
<>
|
2022-09-19 18:01:16 +08:00
|
|
|
<Select
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
onChange={handleChange}
|
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'jack',
|
|
|
|
label: 'Jack',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'lucy',
|
|
|
|
label: 'Lucy',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'disabled',
|
|
|
|
disabled: true,
|
|
|
|
label: 'Disabled',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
value: 'Yiminghe',
|
|
|
|
label: 'yiminghe',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
<Select
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
disabled
|
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'lucy',
|
|
|
|
label: 'Lucy',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
<Select
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
loading
|
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'lucy',
|
|
|
|
label: 'Lucy',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
|
|
|
<Select
|
|
|
|
defaultValue="lucy"
|
|
|
|
style={{ width: 120 }}
|
|
|
|
allowClear
|
|
|
|
options={[
|
|
|
|
{
|
|
|
|
value: 'lucy',
|
|
|
|
label: 'Lucy',
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
/>
|
2022-04-03 23:27:45 +08:00
|
|
|
</>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|