We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9011b83 commit b2a093fCopy full SHA for b2a093f
src/core/vdom/helpers/normalize-scoped-slots.js
@@ -34,7 +34,7 @@ export function normalizeScopedSlots (
34
}
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)) {
+ if (slots && Object.isExtensible(slots)) {
38
(slots: any)._normalized = res
39
40
def(res, '$stable', slots ? !!slots.$stable : true)
0 commit comments