Skip to content

Commit 938fa4e

Browse files
dhcmrlchtdjyyx990803
authored andcommitted
fix(sfc): component contains '<' only (#4753)
* fix(sfc): component contains '<' only * update based on reviews
1 parent 9e38abc commit 938fa4e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

src/compiler/parser/html-parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ export function parseHTML (html, options) {
123123
}
124124

125125
let text, rest, next
126-
if (textEnd > 0) {
126+
if (textEnd >= 0) {
127127
rest = html.slice(textEnd)
128128
while (
129129
!endTag.test(rest) &&

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

+9
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,15 @@ describe('Single File Component parser', () => {
7878
expect(res.template.content.trim()).toBe(`div\n h1(v-if='1 < 2') hello`)
7979
})
8080

81+
it('should handle component contains "<" only', () => {
82+
const res = parseComponent(`
83+
<template>
84+
<span><</span>
85+
</template>
86+
`)
87+
expect(res.template.content.trim()).toBe(`<span><</span>`)
88+
})
89+
8190
it('should handle custom blocks without parsing them', () => {
8291
const res = parseComponent(`
8392
<template>

0 commit comments

Comments
 (0)