vue 路由被 *(星号)拦截是怎么回事?

我的 vue 项目的路由是下面这样的:

{
  path: '/insuranceOutTransferPage',
  component: () => import('../views/insuranceOutTransferPage.vue')
},
{
  path: '/orgApplyTransferPage',
  component: () => import('../views/orgApplyTransferPage.vue')
},
{
   path: '*',
   component: () => import('../views/404.vue')
}

当我访问线上地址 http://xmsb.ncdhm.com:9040/test/ddjgsq/#/orgApplyTransferPage 的时候会偶发性(有时会有时又正常)的跳到 404 页面。

不知道为什么?

阅读 2.4k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题