7d2ccdb8创建于 2023年7月17日历史提交
/**
 Copyright(c) vue-admin-perfect(zouzhibin).
*/
import Layout from '@/layout/index.vue';

const errorRouter = {
  path: '/error',
  component: Layout,
  redirect: 'noRedirect',
  name: 'error',
  hidden: true,
  meta: {
    title: 'error page',
    icon: 'School',
  },
  children: [
    {
      path: '404',
      component: () => import('@/views/error/404.vue'),
      name: '404',
      meta: { title: '404', icon: 'MenuIcon' },
    },
  ],
};

export default errorRouter;