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.

50 lines
1.3 KiB

9 years ago
# 基本
- order: 0
最简单的用法。
---
````jsx
import { TreeSelect } from 'antd';
const TreeNode = TreeSelect.TreeNode;
const Demo = React.createClass({
getInitialState() {
return {
9 years ago
value: 'leaf1',
9 years ago
};
},
9 years ago
onChange(value) {
9 years ago
this.setState({value});
},
render() {
return (
<div style={{margin: 20}}>
<h2>Single Select</h2>
<TreeSelect style={{width: 300}} showSearch
value={this.state.value} optionLabelProp="title"
dropdownMenuStyle={{maxHeight: 200, overflow: 'auto'}}
treeDefaultExpandAll
onChange={this.onChange}>
9 years ago
<TreeNode value="parent 1" title="parent 1" key="0-1">
<TreeNode value="parent 1-0" title="parent 1-0" key="0-1-1">
9 years ago
<TreeNode value="leaf1" title="my leaf" key="random" />
<TreeNode value="leaf2" title="your leaf" key="random1" />
9 years ago
</TreeNode>
9 years ago
<TreeNode value="parent 1-1" title="parent 1-1" key="random2">
<TreeNode value="sss" title={<span style={{color: 'red'}}>sss</span>} key="random3" />
9 years ago
</TreeNode>
</TreeNode>
</TreeSelect>
</div>
);
},
});
ReactDOM.render(
<Demo />
, document.getElementById('components-tree-select-demo-basic'));
````