Skip to content

Commit d03fa26

Browse files
gebilaoxiongyyx990803
authored andcommitted
fix(compile): properly generate comments with special character (#6156)
close #6150
1 parent b0f00e3 commit d03fa26

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

src/compiler/codegen/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ export function genText (text: ASTText | ASTExpression): string {
442442
}
443443

444444
export function genComment (comment: ASTText): string {
445-
return `_e('${comment.text}')`
445+
return `_e(${JSON.stringify(comment.text)})`
446446
}
447447

448448
function genSlot (el: ASTElement, state: CodegenState): string {

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

+15-1
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,21 @@ describe('codegen', () => {
479479
comments: true
480480
}, baseOptions)
481481
const template = '<div><!--comment--></div>'
482-
const generatedCode = `with(this){return _c('div',[_e('comment')])}`
482+
const generatedCode = `with(this){return _c('div',[_e("comment")])}`
483+
484+
const ast = parse(template, options)
485+
optimize(ast, options)
486+
const res = generate(ast, options)
487+
expect(res.render).toBe(generatedCode)
488+
})
489+
490+
// #6150
491+
it('generate comments with special characters', () => {
492+
const options = extend({
493+
comments: true
494+
}, baseOptions)
495+
const template = '<div><!--\n\'comment\'\n--></div>'
496+
const generatedCode = `with(this){return _c('div',[_e("\\n'comment'\\n")])}`
483497

484498
const ast = parse(template, options)
485499
optimize(ast, options)

0 commit comments

Comments
 (0)