VUE控制台报错: [vue-router] Duplicate named routes definition: { name: "NotFound", path: "*" }

将下面写法

{
  path: "*",
  name: 'NotFound',
  redirect: "/404"
}

改为

{
  path: "*",
  redirect: {
    name: 'NotFound',
  }
}

 

Logo

前往低代码交流专区

更多推荐