Skip to content

Commit bf0efb0

Browse files
imyzfyyx990803
authored andcommitted
feat(compiler): support deindent: false in vue-template-compiler (#7215)
close #7054
1 parent a981c80 commit bf0efb0

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

src/sfc/parser.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,10 @@ export function parseComponent (
8383
function end (tag: string, start: number) {
8484
if (depth === 1 && currentBlock) {
8585
currentBlock.end = start
86-
let text = deindent(content.slice(currentBlock.start, currentBlock.end))
86+
let text = content.slice(currentBlock.start, currentBlock.end)
87+
if (options.deindent !== false) {
88+
text = deindent(text)
89+
}
8790
// pad content so that linters and pre-processors can output correct
8891
// line numbers in errors and warnings
8992
if (currentBlock.type !== 'template' && options.pad) {

test/unit/modules/sfc/sfc-parser.spec.js

+27
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,33 @@ describe('Single File Component parser', () => {
5555
expect(res.template.content.trim()).toBe('<div><template v-if="ok">hi</template></div>')
5656
})
5757

58+
it('deindent content', () => {
59+
const content = `
60+
<template>
61+
<div></div>
62+
</template>
63+
<script>
64+
export default {}
65+
</script>
66+
<style>
67+
h1 { color: red }
68+
</style>
69+
`
70+
const deindentDefault = parseComponent(content.trim(), { pad: false })
71+
const deindentEnabled = parseComponent(content.trim(), { pad: false, deindent: true })
72+
const deindentDisabled = parseComponent(content.trim(), { pad: false, deindent: false })
73+
74+
expect(deindentDefault.template.content).toBe('\n<div></div>\n')
75+
expect(deindentDefault.script.content).toBe('\nexport default {}\n')
76+
expect(deindentDefault.styles[0].content).toBe('\nh1 { color: red }\n')
77+
expect(deindentEnabled.template.content).toBe('\n<div></div>\n')
78+
expect(deindentEnabled.script.content).toBe('\nexport default {}\n')
79+
expect(deindentEnabled.styles[0].content).toBe('\nh1 { color: red }\n')
80+
expect(deindentDisabled.template.content).toBe('\n <div></div>\n ')
81+
expect(deindentDisabled.script.content).toBe('\n export default {}\n ')
82+
expect(deindentDisabled.styles[0].content).toBe('\n h1 { color: red }\n ')
83+
})
84+
5885
it('pad content', () => {
5986
const content = `
6087
<template>

0 commit comments

Comments
 (0)