From c0ab0cdde0353351752d3f0773f4f8a680abf90a Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Mon, 8 Apr 2024 17:19:44 +0200 Subject: [PATCH] chore(DropdownMenu): add comment on `type` --- src/runtime/components/DropdownMenu.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/runtime/components/DropdownMenu.vue b/src/runtime/components/DropdownMenu.vue index 809e6b0c..d7eb2b0b 100644 --- a/src/runtime/components/DropdownMenu.vue +++ b/src/runtime/components/DropdownMenu.vue @@ -17,6 +17,10 @@ export interface DropdownMenuItem extends Omit { disabled?: boolean content?: Omit shortcuts?: string[] | KbdProps[] + /** + * The item type. + * @defaultValue "item" + */ type?: 'label' | 'item' slot?: string open?: boolean