feat(BasicTree): BasicTree组件暴露treeData数据

This commit is contained in:
invalid w 2023-11-09 09:47:00 +08:00
parent 2142506ce5
commit caf1783525
2 changed files with 3 additions and 1 deletions

View File

@ -320,6 +320,7 @@
});
const instance: TreeActionType = {
treeData: treeDataRef,
setExpandedKeys,
getExpandedKeys,
setSelectedKeys,

View File

@ -1,4 +1,4 @@
import type { ExtractPropTypes } from 'vue';
import type { ExtractPropTypes, Ref } from 'vue';
import type { TreeDataItem } from 'ant-design-vue/es/tree/Tree';
import { buildProps } from '/@/utils/props';
@ -171,6 +171,7 @@ export interface InsertNodeParams {
}
export interface TreeActionType {
treeData: Ref<TreeDataItem[]>;
checkAll: (checkAll: boolean) => void;
expandAll: (expandAll: boolean) => void;
setExpandedKeys: (keys: KeyType[]) => void;