fix(ssr): support rendering comment (#9128)

This commit is contained in:
Xin Du (Clark) 2018-12-12 16:41:08 +00:00 committed by Evan You
parent 70754084ec
commit b06c784b81
2 changed files with 18 additions and 1 deletions

View File

@ -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

View 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 -->')
})
})