Skip to content

Commit d18e500

Browse files
committed
fix(router-view): return one node when possible
Fix #537
1 parent 70692c3 commit d18e500

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/RouterView.ts

+10-6
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import {
1212
AllowedComponentProps,
1313
ComponentCustomProps,
1414
watch,
15+
Slot,
1516
} from 'vue'
1617
import {
1718
RouteLocationNormalized,
@@ -100,9 +101,7 @@ export const RouterViewImpl = /*#__PURE__*/ defineComponent({
100101
const currentName = props.name
101102

102103
if (!ViewComponent) {
103-
return slots.default
104-
? slots.default({ Component: ViewComponent, route })
105-
: null
104+
return normalizeSlot(slots.default, { Component: ViewComponent, route })
106105
}
107106

108107
// props from route configuration
@@ -133,14 +132,19 @@ export const RouterViewImpl = /*#__PURE__*/ defineComponent({
133132
return (
134133
// pass the vnode to the slot as a prop.
135134
// 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
139137
)
140138
}
141139
},
142140
})
143141

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+
144148
// export the public type for h/tsx inference
145149
// also to avoid inline import() in generated d.ts files
146150
/**

0 commit comments

Comments
 (0)