File tree 3 files changed +16
-6
lines changed
packages/runtime-core/src
3 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 7
7
hyphenate ,
8
8
isArray ,
9
9
isFunction ,
10
+ isObject ,
10
11
isOn ,
11
12
toNumber ,
12
13
UnionToIntersection
@@ -226,7 +227,9 @@ export function normalizeEmitsOptions(
226
227
}
227
228
228
229
if ( ! raw && ! hasExtends ) {
229
- cache . set ( comp , null )
230
+ if ( isObject ( comp ) ) {
231
+ cache . set ( comp , null )
232
+ }
230
233
return null
231
234
}
232
235
@@ -236,7 +239,9 @@ export function normalizeEmitsOptions(
236
239
extend ( normalized , raw )
237
240
}
238
241
239
- cache . set ( comp , normalized )
242
+ if ( isObject ( comp ) ) {
243
+ cache . set ( comp , normalized )
244
+ }
240
245
return normalized
241
246
}
242
247
Original file line number Diff line number Diff line change @@ -966,8 +966,9 @@ export function resolveMergedOptions(
966
966
}
967
967
mergeOptions ( resolved , base , optionMergeStrategies )
968
968
}
969
-
970
- cache . set ( base , resolved )
969
+ if ( isObject ( base ) ) {
970
+ cache . set ( base , resolved )
971
+ }
971
972
return resolved
972
973
}
973
974
Original file line number Diff line number Diff line change @@ -494,7 +494,9 @@ export function normalizePropsOptions(
494
494
}
495
495
496
496
if ( ! raw && ! hasExtends ) {
497
- cache . set ( comp , EMPTY_ARR as any )
497
+ if ( isObject ( comp ) ) {
498
+ cache . set ( comp , EMPTY_ARR as any )
499
+ }
498
500
return EMPTY_ARR as any
499
501
}
500
502
@@ -534,7 +536,9 @@ export function normalizePropsOptions(
534
536
}
535
537
536
538
const res : NormalizedPropsOptions = [ normalized , needCastKeys ]
537
- cache . set ( comp , res )
539
+ if ( isObject ( comp ) ) {
540
+ cache . set ( comp , res )
541
+ }
538
542
return res
539
543
}
540
544
You can’t perform that action at this time.
0 commit comments