@@ -29,16 +29,20 @@ const argRE = /:(.*)$/
29
29
const bindRE = / ^ : | ^ v - b i n d : /
30
30
const modifierRE = / \. [ ^ . ] + / g
31
31
32
+ const literalValueRE = / ^ ( \{ .* \} | \[ .* \] ) $ /
33
+
32
34
const decodeHTMLCached = cached ( he . decode )
33
35
34
36
// configurable state
35
37
export let warn : any
38
+ let literalPropId
36
39
let delimiters
37
40
let transforms
38
41
let preTransforms
39
42
let postTransforms
40
43
let platformIsPreTag
41
44
let platformMustUseProp
45
+ let platformIsReservedTag
42
46
let platformGetTagNamespace
43
47
44
48
type Attr = { name : string ; value: string } ;
@@ -66,9 +70,11 @@ export function parse (
66
70
options : CompilerOptions
67
71
) : ASTElement | void {
68
72
warn = options . warn || baseWarn
73
+ literalPropId = 0
69
74
70
75
platformIsPreTag = options . isPreTag || no
71
76
platformMustUseProp = options . mustUseProp || no
77
+ platformIsReservedTag = options . isReservedTag || no
72
78
platformGetTagNamespace = options . getTagNamespace || no
73
79
74
80
transforms = pluckModuleFunction ( options . modules , 'transformNode' )
@@ -529,6 +535,15 @@ function processAttrs (el) {
529
535
)
530
536
}
531
537
}
538
+ // optimize literal values in component props by wrapping them
539
+ // in an inline watcher to avoid unnecessary re-renders
540
+ if (
541
+ ! platformIsReservedTag ( el . tag ) &&
542
+ el . tag !== 'slot' &&
543
+ literalValueRE . test ( value . trim ( ) )
544
+ ) {
545
+ value = `_a(${ literalPropId ++ } ,function(){return ${ value } })`
546
+ }
532
547
if ( isProp || (
533
548
! el . component && platformMustUseProp ( el . tag , el . attrsMap . type , name )
534
549
) ) {
0 commit comments