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

60 lines
1.2 KiB
Markdown
Raw Normal View History

2018-09-15 00:05:14 +08:00
---
order: 12
debug: true
title:
zh-CN: 后缀图标
en-US: Suffix
---
## zh-CN
最简单的用法。
## en-US
The most basic usage.
```tsx
import { SmileOutlined } from '@ant-design/icons';
2022-05-21 22:14:15 +08:00
import { TreeSelect } from 'antd';
import React, { useState } from 'react';
2018-09-15 00:05:14 +08:00
2019-06-19 19:09:08 +08:00
const { TreeNode } = TreeSelect;
const icon = <SmileOutlined />;
2018-09-15 00:05:14 +08:00
const App: React.FC = () => {
const [value, setValue] = useState<string>();
2018-09-15 00:05:14 +08:00
const onChange = (newValue: string) => {
console.log(newValue);
setValue(newValue);
2019-05-07 14:57:32 +08:00
};
2018-09-15 00:05:14 +08:00
return (
<TreeSelect
showSearch
suffixIcon={icon}
style={{ width: '100%' }}
value={value}
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
placeholder="Please select"
allowClear
treeDefaultExpandAll
onChange={onChange}
>
<TreeNode value="parent 1" title="parent 1">
<TreeNode value="parent 1-0" title="parent 1-0">
<TreeNode value="leaf1" title="my leaf" />
<TreeNode value="leaf2" title="your leaf" />
</TreeNode>
<TreeNode value="parent 1-1" title="parent 1-1">
<TreeNode value="sss" title={<b style={{ color: '#08c' }}>sss</b>} />
2018-09-15 00:05:14 +08:00
</TreeNode>
</TreeNode>
</TreeSelect>
);
};
2018-09-15 00:05:14 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```