mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(@vant-cli): compile error when using setup syntactic sugar (#10603)
This commit is contained in:
parent
040ffbb8ca
commit
8b5c62e6fc
@ -1,7 +1,12 @@
|
|||||||
import fse from 'fs-extra';
|
import fse from 'fs-extra';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import hash from 'hash-sum';
|
import hash from 'hash-sum';
|
||||||
import { parse, SFCBlock, compileTemplate } from 'vue/compiler-sfc';
|
import {
|
||||||
|
parse,
|
||||||
|
SFCBlock,
|
||||||
|
compileTemplate,
|
||||||
|
compileScript,
|
||||||
|
} from 'vue/compiler-sfc';
|
||||||
import { replaceExt } from '../common/index.js';
|
import { replaceExt } from '../common/index.js';
|
||||||
|
|
||||||
const { remove, readFileSync, outputFile } = fse;
|
const { remove, readFileSync, outputFile } = fse;
|
||||||
@ -73,8 +78,9 @@ export async function compileSfc(filePath: string): Promise<any> {
|
|||||||
const scopeId = hasScoped ? `data-v-${hash(source)}` : '';
|
const scopeId = hasScoped ? `data-v-${hash(source)}` : '';
|
||||||
|
|
||||||
// compile js part
|
// compile js part
|
||||||
if (descriptor.script) {
|
if (descriptor.script || descriptor.scriptSetup) {
|
||||||
const lang = descriptor.script.lang || 'js';
|
const lang =
|
||||||
|
descriptor.script?.lang || descriptor.scriptSetup?.lang || 'js';
|
||||||
const scriptFilePath = replaceExt(filePath, `.${lang}`);
|
const scriptFilePath = replaceExt(filePath, `.${lang}`);
|
||||||
|
|
||||||
tasks.push(
|
tasks.push(
|
||||||
@ -86,7 +92,14 @@ export async function compileSfc(filePath: string): Promise<any> {
|
|||||||
script += '// @ts-nocheck\n';
|
script += '// @ts-nocheck\n';
|
||||||
}
|
}
|
||||||
|
|
||||||
script += descriptor.script!.content;
|
if (descriptor.scriptSetup) {
|
||||||
|
script += compileScript(descriptor, {
|
||||||
|
id: scopeId,
|
||||||
|
}).content;
|
||||||
|
} else {
|
||||||
|
script += descriptor.script!.content;
|
||||||
|
}
|
||||||
|
|
||||||
script = injectStyle(script, styles, filePath);
|
script = injectStyle(script, styles, filePath);
|
||||||
script = script.replace(EXPORT, `const ${VUEIDS} =`);
|
script = script.replace(EXPORT, `const ${VUEIDS} =`);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user