该报错为路由重复,多出现在动态生成路由后,切换路由
在引用VueRouter前加上以下代码就可以解决
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
该报错为路由重复,多出现在动态生成路由后,切换路由
在引用VueRouter前加上以下代码就可以解决
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}