vue 404

作者: 阿克兰 | 来源:发表于2021-06-17 16:01 被阅读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 }
    

    相关文章

      网友评论

          本文标题:vue 404

          本文链接:https://www.haomeiwen.com/subject/kypcyltx.html