mirror of
https://gitee.com/vuejs/vue.git
synced 2024-11-30 02:57:43 +08:00
fix(ssr): support rendering comment (#9128)
This commit is contained in:
parent
70754084ec
commit
b06c784b81
@ -225,7 +225,11 @@ function nodesToSegments (
|
||||
} else if (c.type === 2) {
|
||||
segments.push({ type: INTERPOLATION, value: c.expression })
|
||||
} else if (c.type === 3) {
|
||||
segments.push({ type: RAW, value: escape(c.text) })
|
||||
let text = escape(c.text)
|
||||
if (c.isComment) {
|
||||
text = '<!--' + text + '-->'
|
||||
}
|
||||
segments.push({ type: RAW, value: text })
|
||||
}
|
||||
}
|
||||
return segments
|
||||
|
13
test/unit/modules/server-compiler/compiler-options.spec.js
Normal file
13
test/unit/modules/server-compiler/compiler-options.spec.js
Normal file
@ -0,0 +1,13 @@
|
||||
import { ssrCompile } from 'web/server/compiler'
|
||||
|
||||
describe('ssrCompile options', () => {
|
||||
it('comments', () => {
|
||||
const compiled = ssrCompile(`
|
||||
<div>
|
||||
<!-- test comments -->
|
||||
</div>
|
||||
`, { comments: true })
|
||||
|
||||
expect(compiled.render).toContain('<!-- test comments -->')
|
||||
})
|
||||
})
|
Loading…
Reference in New Issue
Block a user