mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-30 05:16:34 +08:00
10 lines
346 B
TypeScript
10 lines
346 B
TypeScript
export const ErrorPage404 = () => import('@/views/exception/404.vue');
|
|
|
|
export const ErrorPage403 = () => import('@/views/exception/403.vue');
|
|
|
|
export const ErrorPage500 = () => import('@/views/exception/500.vue');
|
|
|
|
export const Layout = () => import('@/layout/index.vue');
|
|
|
|
export const ParentLayout = () => import('@/layout/parentLayout.vue');
|