vue路由解決Uncaught (in promise) Error: Avoided redundant navigation to current location: 「/home/news「.

在添加以下步驟後報錯,可是不影響使用:vue

activated(){
   this.$router.push(this.path);
},

解決辦法:vue-router

在router文件夾下的index.js中加入以下代碼,錯誤消失this

import Vue from 'vue'
import VueRouter from 'vue-router'
//import HelloWorld from '@/components/HelloWorld'
const originalPush = VueRouter.prototype.push
   VueRouter.prototype.push = function push(location) {
   return originalPush.call(this, location).catch(err => err)
}
相關文章
相關標籤/搜索