Skip to content

Commit ae9e7da

Browse files
committed
fix missing component tag
1 parent 7630622 commit ae9e7da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/vdom/create-element.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function _createElement (
5151
)
5252
} else if ((Ctor = resolveAsset(context.$options, 'components', tag))) {
5353
// component
54-
return createComponent(Ctor, data, parent, context, host, children)
54+
return createComponent(Ctor, data, parent, context, host, children, tag)
5555
} else {
5656
// unknown element, but check at runtime because it may get assigned
5757
// a namespace when its parent normalizes children

0 commit comments

Comments
 (0)