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