mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(@vant/cli): fix vue-router async component warning
This commit is contained in:
parent
e20b05e10b
commit
0dfb594bd5
@ -83,7 +83,7 @@ function genImportDocuments(items: DocumentItem[]) {
|
||||
.map((item) => {
|
||||
const path = normalizePath(item.path);
|
||||
if (isDev()) {
|
||||
return `const ${item.name} = defineAsyncComponent(() => import('${path}'));`;
|
||||
return `const ${item.name} = () => import('${path}');`;
|
||||
}
|
||||
return `import ${item.name} from '${path}';`;
|
||||
})
|
||||
@ -113,8 +113,7 @@ export function genSiteDesktopShared() {
|
||||
const dirs = readdirSync(SRC_DIR);
|
||||
const documents = resolveDocuments(dirs);
|
||||
|
||||
const code = `import { defineAsyncComponent } from 'vue';
|
||||
${genImportDocuments(documents)}
|
||||
const code = `${genImportDocuments(documents)}
|
||||
|
||||
${genVantConfigContent()}
|
||||
|
||||
|
@ -16,17 +16,11 @@ type DemoItem = {
|
||||
component: string;
|
||||
};
|
||||
|
||||
function genInstall() {
|
||||
return `import { defineAsyncComponent } from 'vue';
|
||||
import './package-style.less';
|
||||
`;
|
||||
}
|
||||
|
||||
function genImports(demos: DemoItem[]) {
|
||||
return demos
|
||||
.map((item) => {
|
||||
const path = removeExt(normalizePath(item.path));
|
||||
return `const ${item.name} = defineAsyncComponent(() => import('${path}'))`;
|
||||
return `const ${item.name} = () => import('${path}')`;
|
||||
})
|
||||
.join('\n');
|
||||
}
|
||||
@ -37,12 +31,6 @@ function genExports(demos: DemoItem[]) {
|
||||
.join(',\n ')}\n};`;
|
||||
}
|
||||
|
||||
function getSetName(demos: DemoItem[]) {
|
||||
return demos
|
||||
.map((item) => `${item.name}.name = 'demo-${item.component}';`)
|
||||
.join('\n');
|
||||
}
|
||||
|
||||
function genConfig(demos: DemoItem[]) {
|
||||
const vantConfig = getVantConfig();
|
||||
const demoNames = demos.map((item) => decamelize(item.name));
|
||||
@ -79,11 +67,9 @@ function genCode(components: string[]) {
|
||||
}))
|
||||
.filter((item) => existsSync(item.path));
|
||||
|
||||
return `${genInstall()}
|
||||
return `import './package-style.less';
|
||||
${genImports(demos)}
|
||||
|
||||
${getSetName(demos)}
|
||||
|
||||
${genExports(demos)}
|
||||
${genConfig(demos)}
|
||||
`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user