Skip to content

Commit

Permalink
Pass all props to child
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick11514 committed Nov 2, 2024
1 parent fb7d83e commit b77b877
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/SuspensionWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defineProps<{

<template>
<Suspense>
<component :is="childComponent" />
<component :is="childComponent" v-bind="$attrs" />
<template #fallback>
<div class="d-flex justify-content-center loading-animation">
<Loader />
Expand Down

0 comments on commit b77b877

Please sign in to comment.