vue-router: No match found for location with path '/xxx/yyy'


我遇到这个问题的原因是路由的name名字重复,导致找不到跳转的路由

{ path: 'store', name: 'store', component: StoreVue } //就是这里的name和别的重复了,应该避免