layout.ts 257 B

12345678
  1. const Layout = () => import('@/layout.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, IFrameView, Layout };