@@ -447,18 +447,15 @@ export function compileScript(
447
447
// props destructure - handle compilation sugar
448
448
for ( const prop of declId . properties ) {
449
449
if ( prop . type === 'ObjectProperty' ) {
450
- if ( prop . computed ) {
450
+ const propKey = resolveObjectKey ( prop . key , prop . computed )
451
+
452
+ if ( ! propKey ) {
451
453
error (
452
454
`${ DEFINE_PROPS } () destructure cannot use computed key.` ,
453
455
prop . key
454
456
)
455
457
}
456
458
457
- const propKey =
458
- prop . key . type === 'StringLiteral'
459
- ? prop . key . value
460
- : ( prop . key as Identifier ) . name
461
-
462
459
if ( prop . value . type === 'AssignmentPattern' ) {
463
460
// default value { foo = 123 }
464
461
const { left, right } = prop . value
@@ -774,7 +771,8 @@ export function compileScript(
774
771
propsRuntimeDefaults . type === 'ObjectExpression' &&
775
772
propsRuntimeDefaults . properties . every (
776
773
node =>
777
- ( node . type === 'ObjectProperty' && ! node . computed ) ||
774
+ ( node . type === 'ObjectProperty' &&
775
+ ( ! node . computed || node . key . type . endsWith ( 'Literal' ) ) ) ||
778
776
node . type === 'ObjectMethod'
779
777
)
780
778
)
@@ -795,9 +793,10 @@ export function compileScript(
795
793
if ( destructured ) {
796
794
defaultString = `default: ${ destructured } `
797
795
} else if ( hasStaticDefaults ) {
798
- const prop = propsRuntimeDefaults ! . properties . find (
799
- ( node : any ) => node . key . name === key
800
- ) as ObjectProperty | ObjectMethod
796
+ const prop = propsRuntimeDefaults ! . properties . find ( node => {
797
+ if ( node . type === 'SpreadElement' ) return false
798
+ return resolveObjectKey ( node . key , node . computed ) === key
799
+ } ) as ObjectProperty | ObjectMethod
801
800
if ( prop ) {
802
801
if ( prop . type === 'ObjectProperty' ) {
803
802
// prop has corresponding static default value
@@ -874,9 +873,13 @@ export function compileScript(
874
873
m . key . type === 'Identifier'
875
874
) {
876
875
if (
877
- propsRuntimeDefaults ! . properties . some (
878
- ( p : any ) => p . key . name === ( m . key as Identifier ) . name
879
- )
876
+ propsRuntimeDefaults ! . properties . some ( p => {
877
+ if ( p . type === 'SpreadElement' ) return false
878
+ return (
879
+ resolveObjectKey ( p . key , p . computed ) ===
880
+ ( m . key as Identifier ) . name
881
+ )
882
+ } )
880
883
) {
881
884
res +=
882
885
m . key . name +
@@ -2139,16 +2142,9 @@ function analyzeBindingsFromOptions(node: ObjectExpression): BindingMetadata {
2139
2142
function getObjectExpressionKeys ( node : ObjectExpression ) : string [ ] {
2140
2143
const keys = [ ]
2141
2144
for ( const prop of node . properties ) {
2142
- if (
2143
- ( prop . type === 'ObjectProperty' || prop . type === 'ObjectMethod' ) &&
2144
- ! prop . computed
2145
- ) {
2146
- if ( prop . key . type === 'Identifier' ) {
2147
- keys . push ( prop . key . name )
2148
- } else if ( prop . key . type === 'StringLiteral' ) {
2149
- keys . push ( prop . key . value )
2150
- }
2151
- }
2145
+ if ( prop . type === 'SpreadElement' ) continue
2146
+ const key = resolveObjectKey ( prop . key , prop . computed )
2147
+ if ( key ) keys . push ( String ( key ) )
2152
2148
}
2153
2149
return keys
2154
2150
}
@@ -2297,3 +2293,14 @@ export function hmrShouldReload(
2297
2293
2298
2294
return false
2299
2295
}
2296
+
2297
+ export function resolveObjectKey ( node : Node , computed : boolean ) {
2298
+ switch ( node . type ) {
2299
+ case 'StringLiteral' :
2300
+ case 'NumericLiteral' :
2301
+ return node . value
2302
+ case 'Identifier' :
2303
+ if ( ! computed ) return node . name
2304
+ }
2305
+ return undefined
2306
+ }
0 commit comments