[vue報錯vue-router.esm.js?8c4f:2007 Uncaught (in promise) NavigationDuplicated {_name: "NavigationDupl

img

解決方法一:通過屢次嘗試發現緣由多是 在從新下載依賴包時,安裝的vue-router仍是以前出錯的那個版本,vue

解決方法也很簡單,在項目目錄下運行 npm i vue-router@3.0 -S 便可。vue-router

解決方法二:若是你不想用方法一那就在 main.js裏添加一段代碼。npm

import Router from 'vue-router'
const routerPush = Router.prototype.push
Router.prototype.push = function push(location) {
  return routerPush.call(this, location).catch(error=> error)
}
相關文章
相關標籤/搜索