mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(@vant-cli): compilation error when using setup syntactic sugar and including subcomponents
This commit is contained in:
parent
e5a3aa103d
commit
cb751211f1
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user