File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -213,17 +213,17 @@ const lists = computed(() => props.items?.length ? (Array.isArray(props.items[0]
213
213
<template v-for =" (list , listIndex ) in lists " :key =" ` list-${listIndex } ` " >
214
214
<NavigationMenuList :class =" ui.list({ class: props.ui?.list })" >
215
215
<component
216
- :is =" (item.children?.length && orientation === 'vertical') ? UCollapsible : NavigationMenuItem"
216
+ :is =" (orientation === 'vertical' && item.children?.length ) ? UCollapsible : NavigationMenuItem"
217
217
v-for =" (item, index) in list"
218
218
:key =" `list-${listIndex}-${index}`"
219
219
as =" li"
220
220
:value =" item.value || String(index)"
221
221
: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"
223
223
:open =" item.open"
224
224
:class =" ui.item({ class: props.ui?.item })"
225
225
>
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 >
227
227
<component
228
228
:is =" (orientation === 'horizontal' && (item.children?.length || !!slots[item.slot ? `${item.slot}-content` : 'item-content'])) ? NavigationMenuTrigger : NavigationMenuLink"
229
229
as-child
You can’t perform that action at this time.
0 commit comments