Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 373 Bytes

File metadata and controls

28 lines (20 loc) · 373 Bytes

useDropdownItems

import {dropdownItemsProps} from '@/composables/useDropdownItems';

const props = defineProps({
  ...dropdownItemsProps,
});

Props

items

Default Value

[]

Item

interface Item {
    active?: boolean;
    label?: string;
    divider?: boolean;
    header?: boolean;
}