From cb751211f1184a7a36627b45290f84c64d656f5a Mon Sep 17 00:00:00 2001 From: Alanscut Date: Mon, 27 Jun 2022 22:20:06 +0800 Subject: [PATCH] fix(@vant-cli): compilation error when using setup syntactic sugar and including subcomponents --- packages/vant-cli/src/compiler/compile-sfc.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/vant-cli/src/compiler/compile-sfc.ts b/packages/vant-cli/src/compiler/compile-sfc.ts index 5508072ee..71304f652 100644 --- a/packages/vant-cli/src/compiler/compile-sfc.ts +++ b/packages/vant-cli/src/compiler/compile-sfc.ts @@ -92,10 +92,13 @@ export async function compileSfc(filePath: string): Promise { 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 { id: scopeId, source: template.content, filename: filePath, + compilerOptions: { + bindingMetadata, + }, }).code; script = injectRender(script, render);