constant.ts 436 B

12345678910111213
  1. export const RedirectName = 'Redirect';
  2. export const ErrorPage = () => import('@/views/exception/404.vue');
  3. export const Layout = () => import('@/layout/index.vue');
  4. export const ParentLayout = () => import('@/layout/parentLayout.vue');
  5. /** 公司主页的layout */
  6. export const HomeLayout = () => import('@/layout/HomeLayout.vue');
  7. /** 带有子菜单的layout */
  8. export const MenuLayout = () => import('@/layout/MenuLayout.vue');