Skip to content

Commit a71853b

Browse files
haoqunjiangyyx990803
authored andcommitted
fix(v-pre): skip compiling custom component tags in v-pre blocks (fix #8286) (#8376)
1 parent 504d5da commit a71853b

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

src/compiler/codegen/index.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ export function generate (
5252
}
5353

5454
export function genElement (el: ASTElement, state: CodegenState): string {
55+
if (el.parent) {
56+
el.pre = el.pre || el.parent.pre
57+
}
58+
5559
if (el.staticRoot && !el.staticProcessed) {
5660
return genStatic(el, state)
5761
} else if (el.once && !el.onceProcessed) {
@@ -70,7 +74,10 @@ export function genElement (el: ASTElement, state: CodegenState): string {
7074
if (el.component) {
7175
code = genComponent(el.component, el, state)
7276
} else {
73-
const data = el.plain ? undefined : genData(el, state)
77+
let data
78+
if (!el.plain || el.pre) {
79+
data = genData(el, state)
80+
}
7481

7582
const children = el.inlineTemplate ? null : genChildren(el, state, true)
7683
code = `_c('${el.tag}'${

src/core/vdom/create-element.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export function _createElement (
102102
config.parsePlatformTagName(tag), data, children,
103103
undefined, undefined, context
104104
)
105-
} else if (isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
105+
} else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
106106
// component
107107
vnode = createComponent(Ctor, data, context, children, tag)
108108
} else {

test/unit/features/directives/pre.spec.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe('Directive v-pre', function () {
77
<div v-pre>{{ a }}</div>
88
<div>{{ a }}</div>
99
<div v-pre>
10-
<component></component>
10+
<component is="div"></component>
1111
</div>
1212
</div>`,
1313
data: {
@@ -17,7 +17,7 @@ describe('Directive v-pre', function () {
1717
vm.$mount()
1818
expect(vm.$el.firstChild.textContent).toBe('{{ a }}')
1919
expect(vm.$el.children[1].textContent).toBe('123')
20-
expect(vm.$el.lastChild.innerHTML).toBe('<component></component>')
20+
expect(vm.$el.lastChild.innerHTML).toBe('<component is="div"></component>')
2121
})
2222

2323
it('should not compile on root node', function () {
@@ -31,4 +31,15 @@ describe('Directive v-pre', function () {
3131
vm.$mount()
3232
expect(vm.$el.firstChild.textContent).toBe('{{ a }}')
3333
})
34+
35+
// #8286
36+
it('should not compile custom component tags', function () {
37+
Vue.component('vtest', { template: ` <div>Hello World</div>` })
38+
const vm = new Vue({
39+
template: '<div v-pre><vtest></vtest></div>',
40+
replace: true
41+
})
42+
vm.$mount()
43+
expect(vm.$el.firstChild.tagName).toBe('VTEST')
44+
})
3445
})

0 commit comments

Comments
 (0)