Skip to content

Commit 9011b83

Browse files
committed
fix: avoid breaking avoriaz edge case
1 parent 8a80086 commit 9011b83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ export function normalizeScopedSlots (
3232
res[key] = proxyNormalSlot(normalSlots, key)
3333
}
3434
}
35-
if (slots) {
35+
// avoriaz seems to mock a non-extensible $scopedSlots object
36+
// and when that is passed down this would cause an error
37+
if (Object.isExtensible(slots)) {
3638
(slots: any)._normalized = res
3739
}
3840
def(res, '$stable', slots ? !!slots.$stable : true)

0 commit comments

Comments
 (0)