Skip to content

Commit 55bfb94

Browse files
Filipe Amaralyyx990803
Filipe Amaral
authored andcommitted
fix(compiler): fix inline-template crashing (#9365)
fix #9361
1 parent c27fe24 commit 55bfb94

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

src/compiler/codegen/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ function genInlineTemplate (el: ASTElement, state: CodegenState): ?string {
346346
{ start: el.start }
347347
)
348348
}
349-
if (ast.type === 1) {
349+
if (ast && ast.type === 1) {
350350
const inlineRenderFns = generate(ast, state.options)
351351
return `inlineTemplate:{render:function(){${
352352
inlineRenderFns.render

test/unit/modules/compiler/codegen.spec.js

+14-7
Original file line numberDiff line numberDiff line change
@@ -591,14 +591,21 @@ describe('codegen', () => {
591591
'<my-component inline-template><hr><hr></my-component>',
592592
`with(this){return _c('my-component',{inlineTemplate:{render:function(){with(this){return _c('hr')}},staticRenderFns:[]}})}`
593593
)
594-
try {
595-
assertCodegen(
596-
'<my-component inline-template></my-component>',
597-
''
598-
)
599-
} catch (e) {}
594+
assertCodegen(
595+
'<my-component inline-template></my-component>',
596+
`with(this){return _c('my-component',{})}`
597+
)
598+
// have "is" attribute
599+
assertCodegen(
600+
'<div is="myComponent" inline-template><div></div></div>',
601+
`with(this){return _c("myComponent",{tag:"div",inlineTemplate:{render:function(){with(this){return _c('div')}},staticRenderFns:[]}})}`
602+
)
603+
assertCodegen(
604+
'<div is="myComponent" inline-template></div>',
605+
`with(this){return _c("myComponent",{tag:"div"})}`
606+
)
600607
expect('Inline-template components must have exactly one child element.').toHaveBeenWarned()
601-
expect(console.error.calls.count()).toBe(2)
608+
expect(console.error.calls.count()).toBe(3)
602609
})
603610

604611
it('generate static trees inside v-for', () => {

0 commit comments

Comments
 (0)