ant-design/components/tree-select/demo/multiple.md

78 lines
1.3 KiB
Markdown
Raw Normal View History

2017-08-21 18:07:39 +08:00
---
order: 1
title:
zh-CN: 多选
en-US: Multiple Selection
---
## zh-CN
多选的树选择。
## en-US
Multiple selection usage.
```tsx
2017-08-21 18:07:39 +08:00
import { TreeSelect } from 'antd';
2022-05-23 14:37:16 +08:00
import React, { useState } from 'react';
2018-06-27 15:55:04 +08:00
const treeData = [
{
value: 'parent 1',
title: 'parent 1',
children: [
{
value: 'parent 1-0',
title: 'parent 1-0',
children: [
{
value: 'leaf1',
title: 'my leaf',
},
{
value: 'leaf2',
title: 'your leaf',
},
],
},
{
value: 'parent 1-1',
title: 'parent 1-1',
children: [
{
value: 'sss',
title: <b style={{ color: '#08c' }}>sss</b>,
},
],
},
],
},
];
const App: React.FC = () => {
const [value, setValue] = useState<string>();
2018-06-27 15:55:04 +08:00
const onChange = (newValue: string) => {
console.log(newValue);
setValue(newValue);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
return (
<TreeSelect
showSearch
style={{ width: '100%' }}
value={value}
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
placeholder="Please select"
allowClear
multiple
treeDefaultExpandAll
onChange={onChange}
treeData={treeData}
/>
);
};
2017-08-21 18:07:39 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```