Skip to content

Commit

Permalink
fix(VList): pass return-object to nested VListChildren (#19848)
Browse files Browse the repository at this point in the history
  • Loading branch information
yuwu9145 authored May 21, 2024
1 parent 5703a6c commit feeb467
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/vuetify/src/components/VList/VListChildren.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ export const VListChildren = genericComponent<new <T extends InternalListItem>(
)
},
default: () => (
<VListChildren items={ children } v-slots={ slots } />
<VListChildren
items={ children }
returnObject={ props.returnObject }
v-slots={ slots }
/>
),
}}
</VListGroup>
Expand Down

0 comments on commit feeb467

Please sign in to comment.