mirror of https://github.com/vuejs/core.git
chore: remove isSelfClosing property
This commit is contained in:
parent
ceec69c8cc
commit
be6cae7dac
|
|
@ -56,7 +56,6 @@ export function createElementWithCodegen(
|
|||
ns: Namespaces.HTML,
|
||||
tag: 'div',
|
||||
tagType: ElementTypes.ELEMENT,
|
||||
isSelfClosing: false,
|
||||
props: [],
|
||||
children: [],
|
||||
codegenNode: {
|
||||
|
|
|
|||
|
|
@ -130,7 +130,6 @@ export interface BaseElementNode extends Node {
|
|||
tagType: ElementTypes
|
||||
props: Array<AttributeNode | DirectiveNode>
|
||||
children: TemplateChildNode[]
|
||||
isSelfClosing?: boolean
|
||||
}
|
||||
|
||||
export interface PlainElementNode extends BaseElementNode {
|
||||
|
|
|
|||
|
|
@ -322,7 +322,6 @@ function createVNodeSlotBranch(
|
|||
ns: Namespaces.HTML,
|
||||
tag: 'template',
|
||||
tagType: ElementTypes.TEMPLATE,
|
||||
isSelfClosing: false,
|
||||
props: wrapperProps,
|
||||
children,
|
||||
loc: locStub,
|
||||
|
|
|
|||
Loading…
Reference in New Issue