From 836f74849be7a91004be7734d45c50535b9f5973 Mon Sep 17 00:00:00 2001 From: Benjamin Canac Date: Wed, 9 Jul 2025 12:58:35 +0200 Subject: [PATCH] fix(NavigationMenu/Tabs): proxy fallthrough attributes --- src/runtime/components/NavigationMenu.vue | 4 +++- src/runtime/components/Tree.vue | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/runtime/components/NavigationMenu.vue b/src/runtime/components/NavigationMenu.vue index ab81603b..291b366d 100644 --- a/src/runtime/components/NavigationMenu.vue +++ b/src/runtime/components/NavigationMenu.vue @@ -177,6 +177,8 @@ import UBadge from './Badge.vue' import UPopover from './Popover.vue' import UTooltip from './Tooltip.vue' +defineOptions({ inheritAttrs: false }) + const props = withDefaults(defineProps>(), { orientation: 'horizontal', contentOrientation: 'horizontal', @@ -392,7 +394,7 @@ function getAccordionDefaultValue(list: NavigationMenuItem[], level = 0) { - +