mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-03 20:44:13 +08:00
21 lines
473 B
Go
21 lines
473 B
Go
import { Layout } from '@/routers/constant';
|
|
|
|
const errorRouter = {
|
|
path: '/error',
|
|
component: Layout,
|
|
children: [
|
|
{
|
|
path: '404',
|
|
name: '404',
|
|
hidden: true,
|
|
component: () => import('@/components/error-message/404.vue'),
|
|
meta: {
|
|
requiresAuth: false,
|
|
title: '404页面',
|
|
key: '404',
|
|
},
|
|
},
|
|
],
|
|
};
|
|
export default errorRouter;
|