You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -17,6 +17,7 @@ Almost anything can be represented in a tree structure. Examples include directo
17
17
18
18
| Property | Description | Type | Default | Version |
19
19
| --- | --- | --- | --- | --- |
20
+
| allowDrop | Whether to allow dropping on the node | ({ dropNode, dropPosition }) => boolean | - ||
20
21
| autoExpandParent | Whether to automatically expand a parent treeNode | boolean | false ||
21
22
| blockNode | Whether treeNode fill remaining horizontal space | boolean | false ||
22
23
| checkable | Adds a `Checkbox` before the treeNodes | boolean | false ||
@@ -28,6 +29,7 @@ Almost anything can be represented in a tree structure. Examples include directo
28
29
| expandedKeys(v-model) | (Controlled) Specifies the keys of the expanded treeNodes | string\[]\| number\[]|\[]||
29
30
| fieldNames | Replace the title,key and children fields in treeNode with the corresponding fields in treeData | object | { children:'children', title:'title', key:'key' } | 3.0.0 |
30
31
| filterTreeNode | Defines a function to filter (highlight) treeNodes. When the function returns `true`, the corresponding treeNode will be highlighted | function(node) | - ||
32
+
| height | Config virtual scroll height. Will not support horizontal scroll when enable this | number | - ||
0 commit comments