Skip to content

Commit 781c705

Browse files
committed
fix: should use fallback for scoped slots with single falsy v-if
fix #9658
1 parent 9313cf9 commit 781c705

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed

src/core/vdom/helpers/normalize-scoped-slots.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ function normalizeScopedSlot(normalSlots, key, fn) {
6060
res = res && typeof res === 'object' && !Array.isArray(res)
6161
? [res] // single vnode
6262
: normalizeChildren(res)
63-
return res && res.length === 0
64-
? undefined
63+
return res && (
64+
res.length === 0 ||
65+
(res.length === 1 && res[0].isComment) // #9658
66+
) ? undefined
6567
: res
6668
}
6769
// this is a slot using the new v-slot syntax without scope. although it is

test/unit/features/component/component-scoped-slot.spec.js

+13
Original file line numberDiff line numberDiff line change
@@ -1264,4 +1264,17 @@ describe('Component scoped slot', () => {
12641264
expect(vm.$el.textContent).toMatch(`Content:ok`)
12651265
}).then(done)
12661266
})
1267+
1268+
//#9658
1269+
it('fallback for scoped slot with single v-if', () => {
1270+
const vm = new Vue({
1271+
template: `<test v-slot><template v-if="false">hi</template></test>`,
1272+
components: {
1273+
Test: {
1274+
template: `<div><slot>fallback</slot></div>`
1275+
}
1276+
}
1277+
}).$mount()
1278+
expect(vm.$el.textContent).toMatch('fallback')
1279+
})
12671280
})

0 commit comments

Comments
 (0)