问题

vue3项目在配置路由时指定未识别的路径自动跳转404页面时,报错Catch all routes ("*") must now be defined using a param with a custom regexp.

意思是捕获所有路由(“”)现在必须使用带有自定义正则表达式的参数来定义

2022-08-08T06:11:21.png

解决方案

{
    path: "/:catchAll(.*)", // 不识别的path自动匹配404
    redirect: '/404',
},
最后修改:2022 年 08 月 08 日
如果觉得我的文章对你有用,请随意赞赏