我的 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 页面。
不知道为什么?