fix(@vant-cli): compilation error when using setup syntactic sugar and including subcomponents

This commit is contained in:
Alanscut 2022-06-27 22:20:06 +08:00 committed by neverland
parent e5a3aa103d
commit cb751211f1

View File

@ -92,10 +92,13 @@ export async function compileSfc(filePath: string): Promise<any> {
script += '// @ts-nocheck\n';
}
let bindingMetadata;
if (descriptor.scriptSetup) {
script += compileScript(descriptor, {
const { bindings, content } = compileScript(descriptor, {
id: scopeId,
}).content;
});
script += content;
bindingMetadata = bindings;
} else {
script += descriptor.script!.content;
}
@ -108,6 +111,9 @@ export async function compileSfc(filePath: string): Promise<any> {
id: scopeId,
source: template.content,
filename: filePath,
compilerOptions: {
bindingMetadata,
},
}).code;
script = injectRender(script, render);