Skip to content

Commit 9b9f2bf

Browse files
committed
fix(compiler-sfc): properly handle shorthand property in template expressions
fix #12566
1 parent de03f69 commit 9b9f2bf

File tree

2 files changed

+19
-20
lines changed

2 files changed

+19
-20
lines changed

packages/compiler-sfc/src/prefixIdentifiers.ts

+16-18
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import MagicString from 'magic-string'
22
import { parseExpression, ParserOptions, ParserPlugin } from '@babel/parser'
33
import { makeMap } from 'shared/util'
4-
import { walkIdentifiers } from './babelUtils'
4+
import { isStaticProperty, walkIdentifiers } from './babelUtils'
55
import { BindingMetadata } from './types'
66

77
const doNotPrefix = makeMap(
@@ -39,18 +39,28 @@ export function prefixIdentifiers(
3939

4040
walkIdentifiers(
4141
ast,
42-
ident => {
42+
(ident, parent) => {
4343
const { name } = ident
4444
if (doNotPrefix(name)) {
4545
return
4646
}
4747

48-
if (!isScriptSetup) {
49-
s.prependRight(ident.start!, '_vm.')
50-
return
48+
let prefix = `_vm.`
49+
if (isScriptSetup) {
50+
const type = bindings[name]
51+
if (type && type.startsWith('setup')) {
52+
prefix = `_setup.`
53+
}
5154
}
5255

53-
s.overwrite(ident.start!, ident.end!, rewriteIdentifier(name, bindings))
56+
if (isStaticProperty(parent) && parent.shorthand) {
57+
// property shorthand like { foo }, we need to add the key since
58+
// we rewrite the value
59+
// { foo } -> { foo: _vm.foo }
60+
s.appendLeft(ident.end!, `: ${prefix}${name}`)
61+
} else {
62+
s.prependRight(ident.start!, prefix)
63+
}
5464
},
5565
node => {
5666
if (node.type === 'WithStatement') {
@@ -70,15 +80,3 @@ export function prefixIdentifiers(
7080

7181
return s.toString()
7282
}
73-
74-
export function rewriteIdentifier(
75-
name: string,
76-
bindings: BindingMetadata
77-
): string {
78-
const type = bindings[name]
79-
if (type && type.startsWith('setup')) {
80-
return `_setup.${name}`
81-
} else {
82-
return `_vm.${name}`
83-
}
84-
}

packages/compiler-sfc/test/prefixIdentifiers.spec.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const toFn = (source: string) => `function render(){${source}\n}`
77

88
it('should work', () => {
99
const { render } = compile(`<div id="app">
10-
<div>{{ foo }}</div>
10+
<div :style="{ color }">{{ foo }}</div>
1111
<p v-for="i in list">{{ i }}</p>
1212
<foo inline-template>
1313
<div>{{ bar }}</div>
@@ -22,6 +22,7 @@ it('should work', () => {
2222
expect(result).not.toMatch(`_vm._c`)
2323
expect(result).toMatch(`_vm.foo`)
2424
expect(result).toMatch(`_vm.list`)
25+
expect(result).toMatch(`{ color: _vm.color }`)
2526
expect(result).not.toMatch(`_vm.i`)
2627
expect(result).not.toMatch(`with (this)`)
2728

@@ -33,7 +34,7 @@ it('should work', () => {
3334
\\"div\\",
3435
{ attrs: { id: \\"app\\" } },
3536
[
36-
_c(\\"div\\", [_vm._v(_vm._s(_vm.foo))]),
37+
_c(\\"div\\", { style: { color: _vm.color } }, [_vm._v(_vm._s(_vm.foo))]),
3738
_vm._v(\\" \\"),
3839
_vm._l(_vm.list, function (i) {
3940
return _c(\\"p\\", [_vm._v(_vm._s(i))])

0 commit comments

Comments
 (0)