Skip to content

Commit 5873296

Browse files
committed
fix(view): render slot with no match
1 parent b83d8aa commit 5873296

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

e2e/transitions/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const app = createApp({
8080
</ul>
8181
<router-view class="view" v-slot="{ Component, props }">
8282
<transition name="fade" mode="out-in">
83-
<component :is="Component" v-bind="props"></component>
83+
<component v-if="Component" :is="Component" v-bind="props"></component>
8484
</transition>
8585
</router-view>
8686
</div>

src/components/View.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ export const View = (defineComponent({
4444
)
4545

4646
const propsData = computed(() => {
47-
// propsData only gets called if ViewComponent.value exists and it depends on matchedRoute.value
47+
// propsData only gets called if ViewComponent.value exists and it depends
48+
// on matchedRoute.value
4849
const { props } = matchedRoute.value!
4950
if (!props) return {}
5051
if (props === true) return route.value.params
@@ -77,17 +78,17 @@ export const View = (defineComponent({
7778

7879
let Component = ViewComponent.value
7980
const componentProps: Parameters<typeof h>[1] = {
81+
// only compute props if there is a matched record
8082
...(Component && propsData.value),
8183
...attrs,
8284
onVnodeMounted,
8385
onVnodeUnmounted,
8486
ref: viewRef,
8587
}
8688

89+
// NOTE: we could also not render if there is no route match
8790
const children =
88-
Component &&
89-
slots.default &&
90-
slots.default({ Component, props: componentProps })
91+
slots.default && slots.default({ Component, props: componentProps })
9192

9293
return children
9394
? children

0 commit comments

Comments
 (0)