admin-vben/apps/web-antd/src/layouts/index.ts

9 lines
266 B
TypeScript
Raw Normal View History

2024-05-21 14:42:25 +00:00
const BasicLayout = () => import('./basic.vue');
2024-05-19 13:20:42 +00:00
const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView);
const AuthPageLayout = () =>
import('@vben/layouts').then((m) => m.AuthPageLayout);
2024-05-19 13:20:42 +00:00
export { AuthPageLayout, BasicLayout, IFrameView };