From 58a29911dddea7597881f3fb6429d623f9498be8 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Thu, 4 Apr 2024 18:22:57 +0200 Subject: [PATCH] chore(NavigationMenu): add missing `value` on items --- src/runtime/components/NavigationMenu.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/runtime/components/NavigationMenu.vue b/src/runtime/components/NavigationMenu.vue index c1fd791a..976c1f76 100644 --- a/src/runtime/components/NavigationMenu.vue +++ b/src/runtime/components/NavigationMenu.vue @@ -12,6 +12,7 @@ const navigationMenu = tv({ extend: tv(theme), ...(appConfig.ui?.navigationMenu export interface NavigationMenuLink extends LinkProps { label: string + value?: string icon?: IconProps['name'] avatar?: AvatarProps badge?: string | number | BadgeProps @@ -56,7 +57,7 @@ const lists = computed(() => props.links?.length ? (Array.isArray(props.links[0]