1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-04 04:54:16 +08:00

21 lines
473 B
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
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;