25 lines
457 B
JavaScript
25 lines
457 B
JavaScript
const Layout = () => import('@/layout/index.vue')
|
|
|
|
export default {
|
|
name: 'ErrorPage',
|
|
path: '/error-page',
|
|
component: Layout,
|
|
redirect: '/error-page/404',
|
|
meta: {
|
|
title: '错误页',
|
|
icon: 'mdi:alert-circle-outline',
|
|
order: 99,
|
|
},
|
|
children: [
|
|
{
|
|
name: 'ERROR-404',
|
|
path: '404',
|
|
component: () => import('./404.vue'),
|
|
meta: {
|
|
title: '404',
|
|
icon: 'tabler:error-404',
|
|
},
|
|
},
|
|
],
|
|
}
|