in packages/build-tools/console-toolkit-plugin-xconsole-fs-route/src/route/RouteMeta.ts [102:110]
getComponents() {
const imports = [
`import ${this.componentName} from '${this.importPath}'`,
];
if (this.layoutPath) {
imports.push(`import ${this.layoutComponentName} from '${this.layoutImportPath}'`);
}
return imports.join('\n');
}