在main.js中輸入
// 解決兩次通路相同路由位址報錯
const originalPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}
在main.js中輸入
// 解決兩次通路相同路由位址報錯
const originalPush = VueRouter.prototype.push;
VueRouter.prototype.push = function push(location) {
return originalPush.call(this, location).catch(err => err)
}