解决控制台报错:main.ts:13 [Vue Router warn]: No match found for location with path "/"

报错:main.ts:13 [Vue Router warn]: No match found for location with path "/"

报错原因:该错误表面Vue Router在尝试匹配路径为 "/" 的路由时没有找到对应的配置。通常是因为你的路由配置中没有定义一个路径为 "/" 的路由。

解决方法:在ts文件的路由配置中添加一个路径为"/"的路由即可

{
      path: '/',
      redirect: '/home'
    }
posted @ 2024-05-16 18:37  淡然置之  阅读(1066)  评论(0编辑  收藏  举报