Skip to content

Commit 57c9013

Browse files
authoredNov 9, 2022
fix(compiler-sfc): only escape parsing-breaking characters in v-bind css var names (#6816)
close #6803
1 parent 2c27556 commit 57c9013

File tree

3 files changed

+23
-11
lines changed

3 files changed

+23
-11
lines changed
 

‎packages/compiler-sfc/__tests__/__snapshots__/cssVars.spec.ts.snap

+4-4
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ export default {
7575
7676
_useCssVars(_ctx => ({
7777
\\"xxxxxxxx-foo\\": (_unref(foo)),
78-
\\"xxxxxxxx-foo____px_\\": (_unref(foo) + 'px'),
79-
\\"xxxxxxxx-_a___b____2____px_\\": ((_unref(a) + _unref(b)) / 2 + 'px'),
80-
\\"xxxxxxxx-__a___b______2___a_\\": (((_unref(a) + _unref(b))) / (2 * _unref(a)))
78+
\\"xxxxxxxx-foo\\\\ \\\\+\\\\ \\\\'px\\\\'\\": (_unref(foo) + 'px'),
79+
\\"xxxxxxxx-\\\\(a\\\\ \\\\+\\\\ b\\\\)\\\\ \\\\/\\\\ 2\\\\ \\\\+\\\\ \\\\'px\\\\'\\": ((_unref(a) + _unref(b)) / 2 + 'px'),
80+
\\"xxxxxxxx-\\\\(\\\\(a\\\\ \\\\+\\\\ b\\\\)\\\\)\\\\ \\\\/\\\\ \\\\(2\\\\ \\\\*\\\\ a\\\\)\\": (((_unref(a) + _unref(b))) / (2 * _unref(a)))
8181
}))
8282
8383
let a = 100
@@ -133,7 +133,7 @@ import { useCssVars as _useCssVars } from 'vue'
133133
const __injectCSSVars__ = () => {
134134
_useCssVars(_ctx => ({
135135
\\"xxxxxxxx-color\\": (_ctx.color),
136-
\\"xxxxxxxx-font_size\\": (_ctx.font.size)
136+
\\"xxxxxxxx-font\\\\.size\\": (_ctx.font.size)
137137
}))}
138138
const __setup__ = __default__.setup
139139
__default__.setup = __setup__

‎packages/compiler-sfc/__tests__/cssVars.spec.ts

+14-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('CSS vars injection', () => {
1212
)
1313
expect(content).toMatch(`_useCssVars(_ctx => ({
1414
"${mockId}-color": (_ctx.color),
15-
"${mockId}-font_size": (_ctx.font.size)
15+
"${mockId}-font\\.size": (_ctx.font.size)
1616
})`)
1717
assertCode(content)
1818
})
@@ -79,14 +79,22 @@ describe('CSS vars injection', () => {
7979
source: `.foo {
8080
color: v-bind(color);
8181
font-size: v-bind('font.size');
82+
83+
font-weight: v-bind(_φ);
84+
font-size: v-bind(1-字号);
85+
font-family: v-bind(フォント);
8286
}`,
8387
filename: 'test.css',
8488
id: 'data-v-test'
8589
})
8690
expect(code).toMatchInlineSnapshot(`
8791
".foo {
8892
color: var(--test-color);
89-
font-size: var(--test-font_size);
93+
font-size: var(--test-font\\\\.size);
94+
95+
font-weight: var(--test-_φ);
96+
font-size: var(--test-1-字号);
97+
font-family: var(--test-フォント);
9098
}"
9199
`)
92100
})
@@ -225,10 +233,10 @@ describe('CSS vars injection', () => {
225233
)
226234
expect(content).toMatch(`_useCssVars(_ctx => ({
227235
"${mockId}-foo": (_unref(foo)),
228-
"${mockId}-foo____px_": (_unref(foo) + 'px'),
229-
"${mockId}-_a___b____2____px_": ((_unref(a) + _unref(b)) / 2 + 'px'),
230-
"${mockId}-__a___b______2___a_": (((_unref(a) + _unref(b))) / (2 * _unref(a)))
231-
})`)
236+
"${mockId}-foo\\ \\+\\ \\'px\\'": (_unref(foo) + 'px'),
237+
"${mockId}-\\(a\\ \\+\\ b\\)\\ \\/\\ 2\\ \\+\\ \\'px\\'": ((_unref(a) + _unref(b)) / 2 + 'px'),
238+
"${mockId}-\\(\\(a\\ \\+\\ b\\)\\)\\ \\/\\ \\(2\\ \\*\\ a\\)": (((_unref(a) + _unref(b))) / (2 * _unref(a)))
239+
}))`)
232240
assertCode(content)
233241
})
234242

‎packages/compiler-sfc/src/cssVars.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,11 @@ function genVarName(id: string, raw: string, isProd: boolean): string {
3030
if (isProd) {
3131
return hash(id + raw)
3232
} else {
33-
return `${id}-${raw.replace(/([^\w-])/g, '_')}`
33+
// escape ASCII Punctuation & Symbols
34+
return `${id}-${raw.replace(
35+
/[ !"#$%&'()*+,./:;<=>?@[\\\]^`{|}~]/g,
36+
s => `\\${s}`
37+
)}`
3438
}
3539
}
3640

0 commit comments

Comments
 (0)
Please sign in to comment.