We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e20581f commit 08a391dCopy full SHA for 08a391d
src/core/vdom/helpers/normalize-scoped-slots.js
@@ -62,7 +62,7 @@ function normalizeScopedSlot(normalSlots, key, fn) {
62
: normalizeChildren(res)
63
return res && (
64
res.length === 0 ||
65
- (res.length === 1 && res[0].isComment) // #9658
+ (res.length === 1 && res[0].isComment && !isAsyncPlaceholder(res[0])) // #9658, #10391
66
) ? undefined
67
: res
68
}
0 commit comments