Skip to content

Commit 8f04135

Browse files
haoqunjiangyyx990803
authored andcommitted
fix(parser): allow CRLFs in string interpolations (#8408)
fix #8103
1 parent a64ff19 commit 8f04135

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/compiler/parser/text-parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { cached } from 'shared/util'
44
import { parseFilters } from './filter-parser'
55

6-
const defaultTagRE = /\{\{((?:.|\n)+?)\}\}/g
6+
const defaultTagRE = /\{\{((?:.|\r?\n)+?)\}\}/g
77
const regexEscapeRE = /[-.*+?^${}()|[\]\/\\]/g
88

99
const buildRegex = cached(delimiters => {

test/unit/modules/compiler/parser.spec.js

+6
Original file line numberDiff line numberDiff line change
@@ -731,4 +731,10 @@ describe('parser', () => {
731731
expect(ast.children[1].isComment).toBe(true) // parse comment with ASTText
732732
expect(ast.children[1].text).toBe('comment here')
733733
})
734+
735+
// #8103
736+
it('should allow CRLFs in string interpolations', () => {
737+
const ast = parse(`<p>{{\r\nmsg\r\n}}</p>`, baseOptions)
738+
expect(ast.children[0].expression).toBe('_s(msg)')
739+
})
734740
})

0 commit comments

Comments
 (0)