Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | 1x 1x | import React, { useState } from "react"; import { Tree } from "@tencent/tea-component/lib/tree"; import { Dropdown } from "@tencent/tea-component/lib/dropdown"; import { List } from "@tencent/tea-component/lib/list"; export default function TreeOperationExample() { const [selectIds, setSelectIds] = useState([]); return ( <Tree selectable selectedIds={selectIds} onSelect={(value, context) => { console.log(value, context); setSelectIds(value); }} > <Tree.Node id="0-0" content="分组一很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长很长" operation={<Tree.Node.ActionLink>新增</Tree.Node.ActionLink>} > <Tree.Node id="0-0-0" content="0-0-0" /> </Tree.Node> <Tree.Node id="0-1" content="0-1" operation={ <Dropdown appearance="link" button="操作"> <List type="option"> <List.Item>操作一</List.Item> <List.Item>操作二</List.Item> </List> </Dropdown> } > <Tree.Node id="0-1-0" content="0-1-0"> <Tree.Node id="0-1-0-1" content="0-1-0-1" /> <Tree.Node id="0-1-0-2" content="0-1-0-2" /> </Tree.Node> </Tree.Node> </Tree> ); } |