ant-design/components/tree-select/demo/suffix.md
黑雨 8404db403a
docs: Tree select data driven (#37622)
* feat: tree-select edit demo to data driven

* feat: update for lint
2022-09-19 11:00:17 +08:00

1.4 KiB

order debug title
12 true
zh-CN en-US
后缀图标 Suffix

zh-CN

最简单的用法。

en-US

The most basic usage.

import { SmileOutlined } from '@ant-design/icons';
import { TreeSelect } from 'antd';
import React, { useState } from 'react';

const icon = <SmileOutlined />;
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>();

  const onChange = (newValue: string) => {
    console.log(newValue);
    setValue(newValue);
  };

  return (
    <TreeSelect
      showSearch
      suffixIcon={icon}
      style={{ width: '100%' }}
      value={value}
      dropdownStyle={{ maxHeight: 400, overflow: 'auto' }}
      placeholder="Please select"
      allowClear
      treeDefaultExpandAll
      onChange={onChange}
      treeData={treeData}
    />
  );
};

export default App;