vue 404

2021-06-17  本文已影响0人  阿克兰
{
    path: '/404',
    component: () => import('@/views/404'),
    hidden: true
  },
 {
    path: '/redirect',
    component: Layout,
    hidden: true,
    children: [
      {
        path: '/redirect/:path(.*)',
        component: () => import('@/views/redirect/index')
      }
    ]
  },

  // 404 page must be placed at the end !!!
  { path: '*', redirect: '/404', hidden: true }
上一篇下一篇

猜你喜欢

热点阅读