| allowClear | 显示清除按钮 | boolean | false | 
| defaultValue | 指定默认选中的条目 | string/string[] | - | 
| disabled | 是否禁用 | boolean | false | 
| dropdownClassName | 下拉菜单的 className 属性 | string | - | 
| dropdownMatchSelectWidth | 下拉菜单和选择器同宽 | boolean | true | 
| dropdownStyle | 下拉菜单的样式 | object | - | 
| filterTreeNode | 是否根据输入项进行筛选,默认用 treeNodeFilterProp 的值作为要筛选的 TreeNode 的属性值 | boolean|Function(inputValue: string, treeNode: TreeNode) (函数需要返回bool值) | Function | 
| getPopupContainer | 菜单渲染父节点。默认渲染到 body 上,如果你遇到菜单滚动定位问题,试试修改为滚动的区域,并相对其定位。 | Function(triggerNode) | () => document.body | 
| labelInValue | 是否把每个选项的 label 包装到 value 中,会把 value 类型从 string变为{value: string, label: VNode, halfChecked(treeCheckStrictly 时有效): string[] }的格式 | boolean | false | 
| loadData | 异步加载数据 | function(node) | - | 
| multiple | 支持多选(当设置 treeCheckable 时自动变为true) | boolean | false | 
| placeholder | 选择框默认文字 | string|slot | - | 
| searchPlaceholder | 搜索框默认文字 | string|slot | - | 
| showCheckedStrategy | 定义选中项回填的方式。 TreeSelect.SHOW_ALL: 显示所有选中节点(包括父节点).TreeSelect.SHOW_PARENT: 只显示父节点(当父节点下所有子节点都选中时). 默认只显示子节点. | enum{TreeSelect.SHOW_ALL, TreeSelect.SHOW_PARENT, TreeSelect.SHOW_CHILD } | TreeSelect.SHOW_CHILD | 
| showSearch | 在下拉中显示搜索框(仅在单选模式下生效) | boolean | false | 
| size | 选择框大小,可选 largesmall | string | 'default' | 
| treeCheckable | 显示 checkbox | boolean | false | 
| treeCheckStrictly | checkable 状态下节点选择完全受控(父子节点选中状态不再关联),会使得 labelInValue强制为 true | boolean | false | 
| treeData | treeNodes 数据,如果设置则不需要手动构造 TreeNode 节点(value 在整个树范围内唯一) | array<{value, label, children, [disabled, disableCheckbox, selectable]}> | [] | 
| treeDataSimpleMode | 使用简单格式的 treeData,具体设置参考可设置的类型 (此时 treeData 应变为这样的数据结构: [{id:1, pId:0, value:'1', label:"test1",...},...], pId是父节点的 id) | false|Array<{ id: string, pId: string, rootPId: null }> | false | 
| treeDefaultExpandAll | 默认展开所有树节点 | boolean | false | 
| treeDefaultExpandedKeys | 默认展开的树节点 | string[] | - | 
| treeNodeFilterProp | 输入项过滤对应的 treeNode 属性 | string | 'value' | 
| treeNodeLabelProp | 作为显示的 prop 设置 | string | 'title' | 
| value(v-model) | 指定当前选中的条目 | string/string[] | - |