dropdown.ts 326 B

12345678910111213141516
  1. export interface DropdownItem {
  2. placeholder?: string;
  3. label: string;
  4. value: string | number | string[] | number[];
  5. prop: string;
  6. keyName?: string;
  7. keyValue?: string;
  8. options?: DropdownOption[];
  9. custom?: boolean;
  10. slot?: string;
  11. }
  12. export interface DropdownOption {
  13. label: string;
  14. value: string | number;
  15. }