Skip to content

Commit b32c4b6

Browse files
committed
fix: ensure proxied normal slot uses correct key
1 parent d855027 commit b32c4b6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function normalizeScopedSlots (
1919
}
2020
// expose normal slots on scopedSlots
2121
for (const key in normalSlots) {
22-
res[key] = () => normalSlots[key]
22+
res[key] = proxyNormalSlot(normalSlots, key)
2323
}
2424
res._normalized = true
2525
return res
@@ -31,3 +31,7 @@ function normalizeScopedSlot(fn: Function) {
3131
return Array.isArray(res) ? res : res ? [res] : res
3232
}
3333
}
34+
35+
function proxyNormalSlot(slots, key) {
36+
return () => slots[key]
37+
}

0 commit comments

Comments
 (0)