vue-router3.x通配规则
vue2.x对应的vue-router3.x的404路由通配方式:
{
path: '*', // 会匹配所有路径
name: '404',
component: () => import('@/views/404/index.vue')
}
vue-router4.x通配规则
上面的代码在vue3.x对应的vue-router4.x的路由通配中就没有效果了,需要改成这样才行:
{
path: '/:error*', // /:error -> 匹配 /, /one, /one/two, /one/two/three, 等
name: '404',
component: () => import('@/views/404/index.vue')
}
匹配优先级
有时候,同一个路径可以匹配多个路由,此时,匹配的优先级就按照路由的定义顺序:路由定义得越早,优先级就越高。
[success] PS:404通配路由一般放到路由定义的最底部
更多前端知识,请关注小程序,不定期有惊喜!
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。