Browse Source

chore: compose workflow api

master
wangxiang 2 years ago
parent
commit
2eaa481d9b
No known key found for this signature in database
GPG Key ID: 1BA7946AB6B232E4
  1. 2
      src/router/helper/routeHelper.ts

2
src/router/helper/routeHelper.ts

@ -19,7 +19,7 @@ const IFRAME = () => import('/@/views/core/iframe/FrameBlank.vue'); @@ -19,7 +19,7 @@ const IFRAME = () => import('/@/views/core/iframe/FrameBlank.vue');
const LayoutMap = new Map<string, () => Promise<typeof import('*.vue')>>();
LayoutMap.set('LAYOUT', LAYOUT);
LayoutMap.set('IFRAME', IFRAME);
LayoutMap.set('PARENTLAYOUT', getParentLayout as any);
LayoutMap.set('PARENTLAYOUT', getParentLayout() as any);
/** 性能优化,避免多次加载views下的组件 */
let dynamicViewsModules: Record<string, () => Promise<Recordable>>;

Loading…
Cancel
Save