ant-design/components/tree/demo/basic.md

73 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
2016-07-21 09:52:39 +08:00
title:
zh-CN: 基本
2019-04-20 06:39:58 +08:00
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-08-03 16:07:21 +08:00
2016-07-21 09:52:39 +08:00
## zh-CN
2016-01-28 15:13:17 +08:00
最简单的用法,展示可勾选,可选中,禁用,默认展开等功能。
2015-08-03 16:07:21 +08:00
2016-07-21 09:52:39 +08:00
## en-US
The most basic usage, tell you how to use checkable, selectable, disabled, defaultExpandKeys, and etc.
```tsx
import { Tree } from 'antd';
2018-06-27 15:55:04 +08:00
const treeData = [
{
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: '#1890ff' }}>sss</span>, key: '0-0-1-0' }],
},
],
},
];
const Demo = () => {
const onSelect = (selectedKeys: React.Key[], info: any) => {
2017-03-03 17:39:26 +08:00
console.log('selected', selectedKeys, info);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const onCheck = (checkedKeys: React.Key[], info: any) => {
2017-03-03 17:39:26 +08:00
console.log('onCheck', checkedKeys, info);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
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}
/>
);
};
2016-01-07 19:05:55 +08:00
ReactDOM.render(<Demo />, mountNode);
2019-05-07 14:57:32 +08:00
```