Skip to content

Commit e8d3a7d

Browse files
committed
fix(codegen): script setup should not attempt to resolve native elements as component
fix #12674
1 parent 67760f8 commit e8d3a7d

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

src/compiler/codegen/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -95,14 +95,15 @@ export function genElement(el: ASTElement, state: CodegenState): string {
9595
code = genComponent(el.component, el, state)
9696
} else {
9797
let data
98-
if (!el.plain || (el.pre && state.maybeComponent(el))) {
98+
const maybeComponent = state.maybeComponent(el)
99+
if (!el.plain || (el.pre && maybeComponent)) {
99100
data = genData(el, state)
100101
}
101102

102103
let tag: string | undefined
103104
// check if this is a component in <script setup>
104105
const bindings = state.options.bindings
105-
if (bindings && bindings.__isScriptSetup !== false) {
106+
if (maybeComponent && bindings && bindings.__isScriptSetup !== false) {
106107
tag =
107108
checkBindingType(bindings, el.tag) ||
108109
checkBindingType(bindings, camelize(el.tag)) ||

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

+16
Original file line numberDiff line numberDiff line change
@@ -724,4 +724,20 @@ describe('codegen', () => {
724724
'"with(this){return _c(\'div\',[_c(Foo),_c(FooBar)],1)}"'
725725
)
726726
})
727+
728+
// #12674
729+
it('component with bindings: should not resolve native elements', () => {
730+
const ast = parse(`<div><form>{{ n }}</form></div>`, baseOptions)
731+
optimize(ast, baseOptions)
732+
const res = generate(ast, {
733+
...baseOptions,
734+
bindings: {
735+
form: BindingTypes.SETUP_CONST
736+
}
737+
})
738+
expect(res.render).toMatch(`_c('form'`)
739+
expect(res.render).toMatchInlineSnapshot(
740+
"\"with(this){return _c('div',[_c('form',[_v(_s(n))])])}\""
741+
)
742+
})
727743
})

0 commit comments

Comments
 (0)