46 lines
958 B
Plaintext
46 lines
958 B
Plaintext
import type { AppRouteRecordRaw } from '@/router/types';
|
|
import { ErrorPage, RedirectName, Layout } from '@/router/constant';
|
|
|
|
// 404 on a page
|
|
export const ErrorPageRoute: AppRouteRecordRaw = {
|
|
path: '/:path(.*)*',
|
|
name: 'ErrorPageParent',
|
|
component: Layout,
|
|
meta: {
|
|
title: 'ErrorPage',
|
|
hideBreadcrumb: true,
|
|
},
|
|
children: [
|
|
{
|
|
path: '/:path(.*)*',
|
|
name: 'ErrorPage',
|
|
component: ErrorPage,
|
|
meta: {
|
|
title: 'ErrorPage',
|
|
hideBreadcrumb: true,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export const RedirectRoute: AppRouteRecordRaw = {
|
|
path: '/redirect',
|
|
name: `${RedirectName}Parent`,
|
|
component: Layout,
|
|
meta: {
|
|
title: RedirectName,
|
|
hideBreadcrumb: true,
|
|
},
|
|
children: [
|
|
{
|
|
path: '/redirect/:path(.*)',
|
|
name: RedirectName,
|
|
component: () => import('@/views/redirect/index.vue'),
|
|
meta: {
|
|
title: RedirectName,
|
|
hideBreadcrumb: true,
|
|
},
|
|
},
|
|
],
|
|
};
|