You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.2 KiB

---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
9 years ago
## zh-CN
9 years ago
最简单的用法。
## en-US
The most basic usage.
````jsx
9 years ago
import { TreeSelect } from 'antd';
9 years ago
const TreeNode = TreeSelect.TreeNode;
class Demo extends React.Component {
state = {
value: undefined,
}
onChange = (value) => {
console.log(value);
9 years ago
this.setState({ value });
}
9 years ago
render() {
return (
<TreeSelect
showSearch
style={{ width: 300 }}
9 years ago
value={this.state.value}
dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
placeholder="Please select"
allowClear
treeDefaultExpandAll
onChange={this.onChange}
>
<TreeNode value="parent 1" title="parent 1" key="0-1">
<TreeNode value="parent 1-0" title="parent 1-0" key="0-1-1">
<TreeNode value="leaf1" title="my leaf" key="random" />
<TreeNode value="leaf2" title="your leaf" key="random1" />
9 years ago
</TreeNode>
<TreeNode value="parent 1-1" title="parent 1-1" key="random2">
<TreeNode value="sss" title={<b style={{ color: '#08c' }}>sss</b>} key="random3" />
</TreeNode>
</TreeNode>
</TreeSelect>
);
}
}
9 years ago
ReactDOM.render(<Demo />, mountNode);
9 years ago
````