ant-design/components/cascader/demo/size.md

81 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-12-22 16:23:33 +08:00
order: 6
title:
zh-CN: 大小
en-US: Size
2016-03-31 09:40:55 +08:00
---
2016-01-27 12:00:27 +08:00
## zh-CN
2016-01-27 12:00:27 +08:00
不同大小的级联选择器。
## en-US
Cascade selection box of different sizes.
```tsx
2016-01-27 12:00:27 +08:00
import { Cascader } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2016-01-27 12:00:27 +08:00
interface Option {
value: string;
label: string;
children?: Option[];
}
const options: Option[] = [
2019-05-07 14:57:32 +08:00
{
value: 'zhejiang',
label: 'Zhejiang',
children: [
{
value: 'hangzhou',
label: 'Hangzhou',
children: [
{
value: 'xihu',
label: 'West Lake',
},
],
},
],
},
{
value: 'jiangsu',
label: 'Jiangsu',
children: [
{
value: 'nanjing',
label: 'Nanjing',
children: [
{
value: 'zhonghuamen',
label: 'Zhong Hua Men',
},
],
},
],
},
];
2016-01-27 12:00:27 +08:00
const onChange = (value: string[]) => {
2016-01-27 12:00:27 +08:00
console.log(value);
};
2016-01-27 12:00:27 +08:00
const App: React.FC = () => (
<>
2019-05-07 14:57:32 +08:00
<Cascader size="large" options={options} onChange={onChange} />
<br />
<br />
<Cascader options={options} onChange={onChange} />
<br />
<br />
<Cascader size="small" options={options} onChange={onChange} />
<br />
<br />
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```