mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 18:09:22 +08:00
8404db403a
* feat: tree-select edit demo to data driven * feat: update for lint
76 lines
1.3 KiB
Markdown
76 lines
1.3 KiB
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
最简单的用法。
|
|
|
|
## en-US
|
|
|
|
The most basic usage.
|
|
|
|
```tsx
|
|
import { TreeSelect } from 'antd';
|
|
import React, { useState } from 'react';
|
|
|
|
const treeData = [
|
|
{
|
|
value: 'parent 1',
|
|
title: 'parent 1',
|
|
children: [
|
|
{
|
|
value: 'parent 1-0',
|
|
title: 'parent 1-0',
|
|
children: [
|
|
{
|
|
value: 'leaf1',
|
|
title: 'leaf1',
|
|
},
|
|
{
|
|
value: 'leaf2',
|
|
title: 'leaf2',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
value: 'parent 1-1',
|
|
title: 'parent 1-1',
|
|
children: [
|
|
{
|
|
value: 'leaf3',
|
|
title: <b style={{ color: '#08c' }}>leaf3</b>,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
const App: React.FC = () => {
|
|
const [value, setValue] = useState<string | undefined>(undefined);
|
|
|
|
const onChange = (newValue: string) => {
|
|
setValue(newValue);
|
|
};
|
|
|
|
return (
|
|
<TreeSelect
|
|
showSearch
|
|
style={{ width: '100%' }}
|
|
value={value}
|
|
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
|
|
placeholder="Please select"
|
|
allowClear
|
|
treeDefaultExpandAll
|
|
onChange={onChange}
|
|
treeData={treeData}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|