问题描述:重复点击导航时,控制台出现报错 ,虽然不影响功能使用,但也不能视而不见。
    方案一:只需在 router 文件夹下,添加如下代码:

    1. // src/router/index.js
    2. Vue.use(Router)
    3. const router = new Router({
    4. routes
    5. })
    6. const VueRouterPush = Router.prototype.push
    7. Router.prototype.push = function push (to) {
    8. return VueRouterPush.call(this, to).catch(err => err)
    9. }

    方案二:在跳转时,判断是否跳转路由和当前路由是否一致,避免重复跳转产生问题。

    1. toMenu (item) {
    2. if (this.$route.path !== item.url) {
    3. this.$router.push({ path: item.url })
    4. }
    5. }

    方案三:使用 catch 方法捕获 router.push 异常。

    1. this.$router.push(route).catch(err => {
    2. console.log('输出报错',err)
    3. })