Skip to content

Commit

Permalink
fix(v-pre): skip compiling custom component tags in v-pre blocks (fix #…
Browse files Browse the repository at this point in the history
  • Loading branch information
sodatea authored and yyx990803 committed Oct 24, 2018
1 parent 504d5da commit a71853b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
9 changes: 8 additions & 1 deletion src/compiler/codegen/index.js
Expand Up @@ -52,6 +52,10 @@ export function generate (
}

export function genElement (el: ASTElement, state: CodegenState): string {
if (el.parent) {
el.pre = el.pre || el.parent.pre
}

if (el.staticRoot && !el.staticProcessed) {
return genStatic(el, state)
} else if (el.once && !el.onceProcessed) {
Expand All @@ -70,7 +74,10 @@ export function genElement (el: ASTElement, state: CodegenState): string {
if (el.component) {
code = genComponent(el.component, el, state)
} else {
const data = el.plain ? undefined : genData(el, state)
let data
if (!el.plain || el.pre) {
data = genData(el, state)
}

const children = el.inlineTemplate ? null : genChildren(el, state, true)
code = `_c('${el.tag}'${
Expand Down
2 changes: 1 addition & 1 deletion src/core/vdom/create-element.js
Expand Up @@ -102,7 +102,7 @@ export function _createElement (
config.parsePlatformTagName(tag), data, children,
undefined, undefined, context
)
} else if (isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
} else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {
// component
vnode = createComponent(Ctor, data, context, children, tag)
} else {
Expand Down
15 changes: 13 additions & 2 deletions test/unit/features/directives/pre.spec.js
Expand Up @@ -7,7 +7,7 @@ describe('Directive v-pre', function () {
<div v-pre>{{ a }}</div>
<div>{{ a }}</div>
<div v-pre>
<component></component>
<component is="div"></component>
</div>
</div>`,
data: {
Expand All @@ -17,7 +17,7 @@ describe('Directive v-pre', function () {
vm.$mount()
expect(vm.$el.firstChild.textContent).toBe('{{ a }}')
expect(vm.$el.children[1].textContent).toBe('123')
expect(vm.$el.lastChild.innerHTML).toBe('<component></component>')
expect(vm.$el.lastChild.innerHTML).toBe('<component is="div"></component>')
})

it('should not compile on root node', function () {
Expand All @@ -31,4 +31,15 @@ describe('Directive v-pre', function () {
vm.$mount()
expect(vm.$el.firstChild.textContent).toBe('{{ a }}')
})

// #8286
it('should not compile custom component tags', function () {
Vue.component('vtest', { template: ` <div>Hello World</div>` })
const vm = new Vue({
template: '<div v-pre><vtest></vtest></div>',
replace: true
})
vm.$mount()
expect(vm.$el.firstChild.tagName).toBe('VTEST')
})
})

0 comments on commit a71853b

Please sign in to comment.