Skip to content

Commit 4b19339

Browse files
committed
feat: resolve components from <script setup>
1 parent d4787e5 commit 4b19339

File tree

4 files changed

+27
-17
lines changed

4 files changed

+27
-17
lines changed

packages/compiler-sfc/src/compileTemplate.ts

+1
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ function actuallyCompile(
132132
filename: options.filename
133133
})
134134
}
135+
finalCompilerOptions.bindings = bindings
135136

136137
const { ast, render, staticRenderFns, tips, errors } = compile(
137138
source,

packages/compiler-sfc/src/types.ts

+3-14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { WarningMessage } from 'types/compiler'
1+
import { CompilerOptions, CompiledResult } from 'types/compiler'
22
import { SFCDescriptor } from './parseComponent'
33

44
export interface StartOfSourceMap {
@@ -31,20 +31,9 @@ export interface VueTemplateCompiler {
3131
// we'll just shim this much for now - in the future these types
3232
// should come from vue-template-compiler directly, or this package should be
3333
// part of the vue monorepo.
34-
export interface VueTemplateCompilerOptions {
35-
modules?: Object[]
36-
outputSourceRange?: boolean
37-
whitespace?: 'preserve' | 'condense'
38-
directives?: { [key: string]: Function }
39-
}
34+
export type VueTemplateCompilerOptions = CompilerOptions
4035

41-
export interface VueTemplateCompilerResults {
42-
ast: Object | undefined
43-
render: string
44-
staticRenderFns: string[]
45-
errors: (string | WarningMessage)[]
46-
tips: (string | WarningMessage)[]
47-
}
36+
export type VueTemplateCompilerResults = CompiledResult
4837

4938
export const enum BindingTypes {
5039
/**

src/compiler/codegen/index.ts

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { genHandlers } from './events'
22
import baseDirectives from '../directives/index'
3-
import { camelize, no, extend } from 'shared/util'
3+
import { camelize, no, extend, capitalize } from 'shared/util'
44
import { baseWarn, pluckModuleFunction } from '../helpers'
55
import { emptySlotScopeToken } from '../parser/index'
66
import {
@@ -13,6 +13,7 @@ import {
1313
ASTText,
1414
CompilerOptions
1515
} from 'types/compiler'
16+
import { BindingMetadata } from 'sfc/types'
1617

1718
type TransformFunction = (el: ASTElement, code: string) => string
1819
type DataGenFunction = (el: ASTElement) => string
@@ -98,8 +99,19 @@ export function genElement(el: ASTElement, state: CodegenState): string {
9899
data = genData(el, state)
99100
}
100101

102+
let tag: string | undefined
103+
// check if this is a component in <script setup>
104+
const bindings = state.options.bindings
105+
if (bindings && !bindings.__isScriptSetup) {
106+
tag =
107+
checkBindingType(bindings, el.tag) ||
108+
checkBindingType(bindings, camelize(el.tag)) ||
109+
checkBindingType(bindings, capitalize(camelize(el.tag)))
110+
}
111+
if (!tag) tag = `'${el.tag}'`
112+
101113
const children = el.inlineTemplate ? null : genChildren(el, state, true)
102-
code = `_c('${el.tag}'${
114+
code = `_c(${tag}${
103115
data ? `,${data}` : '' // data
104116
}${
105117
children ? `,${children}` : '' // children
@@ -113,6 +125,13 @@ export function genElement(el: ASTElement, state: CodegenState): string {
113125
}
114126
}
115127

128+
function checkBindingType(bindings: BindingMetadata, key: string) {
129+
const type = bindings[key]
130+
if (type && type.startsWith('setup')) {
131+
return key
132+
}
133+
}
134+
116135
// hoist static sub-trees out
117136
function genStatic(el: ASTElement, state: CodegenState): string {
118137
el.staticProcessed = true

src/types/compiler.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export type CompilerOptions = {
3131
// for ssr optimization compiler
3232
scopeId?: string
3333

34-
bindingMetadata?: BindingMetadata
34+
// SFC analyzed script bindings from `compileScript()`
35+
bindings?: BindingMetadata
3536
}
3637

3738
export type WarningMessage = {

0 commit comments

Comments
 (0)