Skip to content

Commit 82d6344

Browse files
committedDec 17, 2024
fix(NavigationMenu): unbind link on collapsible trigger with vertical orientation
1 parent 9b4694f commit 82d6344

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/runtime/components/NavigationMenu.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -213,17 +213,17 @@ const lists = computed(() => props.items?.length ? (Array.isArray(props.items[0]
213213
<template v-for="(list, listIndex) in lists" :key="`list-${listIndex}`">
214214
<NavigationMenuList :class="ui.list({ class: props.ui?.list })">
215215
<component
216-
:is="(item.children?.length && orientation === 'vertical') ? UCollapsible : NavigationMenuItem"
216+
:is="(orientation === 'vertical' && item.children?.length) ? UCollapsible : NavigationMenuItem"
217217
v-for="(item, index) in list"
218218
:key="`list-${listIndex}-${index}`"
219219
as="li"
220220
:value="item.value || String(index)"
221221
:default-open="item.defaultOpen"
222-
:unmount-on-hide="(item.children?.length && orientation === 'vertical') ? unmountOnHide : undefined"
222+
:unmount-on-hide="(orientation === 'vertical' && item.children?.length) ? unmountOnHide : undefined"
223223
:open="item.open"
224224
:class="ui.item({ class: props.ui?.item })"
225225
>
226-
<ULink v-slot="{ active, ...slotProps }" v-bind="pickLinkProps(item)" custom>
226+
<ULink v-slot="{ active, ...slotProps }" v-bind="(orientation === 'vertical' && item.children?.length) ? {} : pickLinkProps(item)" custom>
227227
<component
228228
:is="(orientation === 'horizontal' && (item.children?.length || !!slots[item.slot ? `${item.slot}-content` : 'item-content'])) ? NavigationMenuTrigger : NavigationMenuLink"
229229
as-child

0 commit comments

Comments
 (0)
Please sign in to comment.