tree.d.ts 443 B

123456789101112
  1. import ElTree from 'element-plus/es/components/tree';
  2. import type { Ref } from 'vue';
  3. import type ElSelect from 'element-plus/es/components/select';
  4. export declare const useTree: (props: any, { attrs, slots, emit }: {
  5. attrs: any;
  6. slots: any;
  7. emit: any;
  8. }, { select, tree, key, }: {
  9. select: Ref<InstanceType<typeof ElSelect> | undefined>;
  10. tree: Ref<InstanceType<typeof ElTree> | undefined>;
  11. key: Ref<string>;
  12. }) => any;