今天在写vue-music的时候,发现每次跳转路由都会出现这个错误,于是上网查了一下解决的方法
在main.js中添加
import Router from ‘vue-router‘
const originalPush = Router.prototype.push
Router.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
原文地址:https://www.cnblogs.com/guozhiqiang/p/12343987.html
时间: 2024-10-18 05:41:07