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

9 lines
278 B
TypeScript
Raw Normal View History

2024-05-21 22:42:25 +08:00
const BasicLayout = () => import('./basic.vue');
2024-05-19 21:20:42 +08:00
const IFrameView = () => import('@vben/layouts').then((m) => m.IFrameView);
2024-06-01 23:15:29 +08:00
const AuthPageLayoutType = () =>
import('@vben/layouts').then((m) => m.AuthPageLayoutType);
2024-05-19 21:20:42 +08:00
2024-06-01 23:15:29 +08:00
export { AuthPageLayoutType, BasicLayout, IFrameView };