You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a component element with is attribute set to an HTML element string.
What is expected?
If no component is to be found it should simply use that string as a tag name. Or alternatively check if that string is a valid HTML built-in tag name.
What is actually happening?
Vue tries to find a component with such a name and fails to do so with a warning:
[Vue warn]: Failed to resolve component: span
at <App> ""
at <Anonymous> (Root)
[Vue warn]: Invalid vnode type when creating vnode: undefined.
at <App> ""
at <Anonymous> (Root)
The text was updated successfully, but these errors were encountered:
Version
3.0.0-alpha.9
Reproduction link
https://codesandbox.io/s/clever-banach-vutvf
Steps to reproduce
is
attribute set to an HTML element string.What is expected?
If no component is to be found it should simply use that string as a tag name. Or alternatively check if that string is a valid HTML built-in tag name.
What is actually happening?
Vue tries to find a component with such a name and fails to do so with a warning:
The text was updated successfully, but these errors were encountered: