ant-design/components/tree-select/demo/basic.md
xrkffgg 4b26b3710d
chore: fix build (#29671)
* docs: test demo

* fix: site build error

https://github.com/react-component/footer/releases/tag/v0.6.6

Co-authored-by: afc163 <afc163@gmail.com>
2021-03-09 14:45:54 +08:00

1.1 KiB

order title
0
zh-CN en-US
基本 Basic

zh-CN

最简单的用法。

en-US

The most basic usage.

import React, { useState } from 'react';
import { TreeSelect } from 'antd';

const { TreeNode } = TreeSelect;

const Demo = () => {
  const [value, setValue] = useState(undefined);
  const onChange = () => {
    setValue(value);
  };
  return (
    <TreeSelect
      showSearch
      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="leaf1" />
          <TreeNode value="leaf2" title="leaf2" />
        </TreeNode>
        <TreeNode value="parent 1-1" title="parent 1-1">
          <TreeNode value="leaf3" title={<b style={{ color: '#08c' }}>leaf3</b>} />
        </TreeNode>
      </TreeNode>
    </TreeSelect>
  );
};

ReactDOM.render(<Demo />, mountNode);