mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
58 lines
1.2 KiB
TypeScript
58 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import { Tree } from 'antd';
|
|
import type { DataNode, TreeProps } from 'antd/es/tree';
|
|
|
|
const treeData: DataNode[] = [
|
|
{
|
|
title: 'parent 1',
|
|
key: '0-0',
|
|
children: [
|
|
{
|
|
title: 'parent 1-0',
|
|
key: '0-0-0',
|
|
disabled: true,
|
|
children: [
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-0-0',
|
|
disableCheckbox: true,
|
|
},
|
|
{
|
|
title: 'leaf',
|
|
key: '0-0-0-1',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'parent 1-1',
|
|
key: '0-0-1',
|
|
children: [{ title: <span style={{ color: '#1677ff' }}>sss</span>, key: '0-0-1-0' }],
|
|
},
|
|
],
|
|
},
|
|
];
|
|
|
|
const App: React.FC = () => {
|
|
const onSelect: TreeProps['onSelect'] = (selectedKeys, info) => {
|
|
console.log('selected', selectedKeys, info);
|
|
};
|
|
|
|
const onCheck: TreeProps['onCheck'] = (checkedKeys, info) => {
|
|
console.log('onCheck', checkedKeys, info);
|
|
};
|
|
|
|
return (
|
|
<Tree
|
|
checkable
|
|
defaultExpandedKeys={['0-0-0', '0-0-1']}
|
|
defaultSelectedKeys={['0-0-0', '0-0-1']}
|
|
defaultCheckedKeys={['0-0-0', '0-0-1']}
|
|
onSelect={onSelect}
|
|
onCheck={onCheck}
|
|
treeData={treeData}
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default App;
|