7 lines
230 B
TypeScript
7 lines
230 B
TypeScript
const BasicLayout = () => import('./basic.vue');
|
|
const AuthPageLayout = () => import('./auth.vue');
|
|
|
|
const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView);
|
|
|
|
export { AuthPageLayout, BasicLayout, IFrameView };
|