vue重复点击导航时,控制台报错

89 阅读1分钟

报错内容

image.png

解决方式

在router/index.js中添加以下代码

// src/router/index.js
import Vue from 'vue'
import VueRouter  from 'vue-router'
Vue.use(VueRouter)
 
//添加以下代码
const originalPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(location) {
  return originalPush.call(this, location).catch(err => err)
}