1
0

index.ts 266 B

12345678
  1. const BasicLayout = () => import('./basic.vue');
  2. const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView);
  3. const AuthPageLayout = () =>
  4. import('@vben/layouts').then((m) => m.AuthPageLayout);
  5. export { AuthPageLayout, BasicLayout, IFrameView };