We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 574070f commit e1ee3c4Copy full SHA for e1ee3c4
packages/compiler-core/src/transforms/transformElement.ts
@@ -891,7 +891,7 @@ function stringifyDynamicPropNames(props: string[]): string {
891
}
892
893
function isComponentTag(tag: string) {
894
- return tag[0].toLowerCase() + tag.slice(1) === 'component'
+ return tag === 'component' || tag === 'Component'
895
896
897
function processInlineRef(
0 commit comments