File tree 1 file changed +10
-6
lines changed
1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ import {
12
12
AllowedComponentProps ,
13
13
ComponentCustomProps ,
14
14
watch ,
15
+ Slot ,
15
16
} from 'vue'
16
17
import {
17
18
RouteLocationNormalized ,
@@ -100,9 +101,7 @@ export const RouterViewImpl = /*#__PURE__*/ defineComponent({
100
101
const currentName = props . name
101
102
102
103
if ( ! ViewComponent ) {
103
- return slots . default
104
- ? slots . default ( { Component : ViewComponent , route } )
105
- : null
104
+ return normalizeSlot ( slots . default , { Component : ViewComponent , route } )
106
105
}
107
106
108
107
// props from route configuration
@@ -133,14 +132,19 @@ export const RouterViewImpl = /*#__PURE__*/ defineComponent({
133
132
return (
134
133
// pass the vnode to the slot as a prop.
135
134
// h and <component :is="..."> both accept vnodes
136
- slots . default
137
- ? slots . default ( { Component : component , route } )
138
- : component
135
+ normalizeSlot ( slots . default , { Component : component , route } ) ||
136
+ component
139
137
)
140
138
}
141
139
} ,
142
140
} )
143
141
142
+ function normalizeSlot ( slot : Slot | undefined , data : any ) {
143
+ if ( ! slot ) return null
144
+ const slotContent = slot ( data )
145
+ return slotContent . length === 1 ? slotContent [ 0 ] : slotContent
146
+ }
147
+
144
148
// export the public type for h/tsx inference
145
149
// also to avoid inline import() in generated d.ts files
146
150
/**
You can’t perform that action at this time.
0 commit comments