File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ const app = createApp({
80
80
</ul>
81
81
<router-view class="view" v-slot="{ Component, props }">
82
82
<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>
84
84
</transition>
85
85
</router-view>
86
86
</div>
Original file line number Diff line number Diff line change @@ -44,7 +44,8 @@ export const View = (defineComponent({
44
44
)
45
45
46
46
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
48
49
const { props } = matchedRoute . value !
49
50
if ( ! props ) return { }
50
51
if ( props === true ) return route . value . params
@@ -77,17 +78,17 @@ export const View = (defineComponent({
77
78
78
79
let Component = ViewComponent . value
79
80
const componentProps : Parameters < typeof h > [ 1 ] = {
81
+ // only compute props if there is a matched record
80
82
...( Component && propsData . value ) ,
81
83
...attrs ,
82
84
onVnodeMounted,
83
85
onVnodeUnmounted,
84
86
ref : viewRef ,
85
87
}
86
88
89
+ // NOTE: we could also not render if there is no route match
87
90
const children =
88
- Component &&
89
- slots . default &&
90
- slots . default ( { Component, props : componentProps } )
91
+ slots . default && slots . default ( { Component, props : componentProps } )
91
92
92
93
return children
93
94
? children
You can’t perform that action at this time.
0 commit comments