select.d.ts 393 B

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