vue安裝vue-router出錯問題及解決
項目場景
在vue中安裝vue-router
問題描述
提示:在安裝過程中報錯,缺少依賴:
PS D:\WebDeplpyer\workspace\Vue_Basic\vue_test> npm i vue-router
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: vue_test@0.1.0
npm ERR! Found: vue@2.6.14
npm ERR! node_modules/vue
npm ERR! vue@"^2.6.11" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer vue@"^3.0.0" from vue-router@4.0.12
npm ERR! node_modules/vue-router
npm ERR! vue-router@"*" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See C:\Users\ASUS\AppData\Local\npm-cache\eresolve-report.txt for a full report.npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\ASUS\AppData\Local\npm-cache\_logs\2022-02-16T06_43_35_320Z-debug.log
原因分析
查閱資料,大部分都說是npm版本問題,新版本對下載要求比較嚴格。
解決方案
根據(jù)錯誤提示,在命令行中加入–legacy-peer-deps,由于vue與vue-router版本兼容的問題,需要在安裝語句后加入需要下載vue-router版本,不然會下載最新的vue-router版本。
npm install --legacy-peer-deps vue-router@4.0.13
也有可能因為是你要下載的router版本過高,如果下載版本過高,在啟動項目時會報錯,可以下載低版本的vue-router
npm install vue-router@3.1.3 --save-dev
在package.json文件中查看是否下載成功
"dependencies": { "animate.css": "^4.1.1", "axios": "^0.25.0", "chromedriver": "^98.0.0", "core-js": "^3.6.5", "nanoid": "^3.2.0", "pubsub-js": "^1.9.4", "vue": "^2.6.11", "vue-resource": "^1.5.3", "vue-router": "^3.1.3", "vuex": "^3.6.2" },
總結(jié)
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Vue實現(xiàn)登錄保存token并校驗實現(xiàn)保存登錄狀態(tài)的操作代碼
這篇文章主要介紹了Vue實現(xiàn)登錄保存token并校驗實現(xiàn)保存登錄狀態(tài),本文通過示例代碼給大家介紹的非常詳細,感興趣的朋友跟隨小編一起看看吧2024-02-02關(guān)于vue3默認把所有onSomething當(dāng)作v-on事件綁定的思考
這篇文章主要介紹了關(guān)于vue3默認把所有`onSomething`當(dāng)作`v-on`事件綁定的思考,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-05-05最適應(yīng)的vue.js的form提交涉及多種插件【推薦】
這篇文章主要介紹了最適應(yīng)的vue.js的form提交涉及多種插件,涉及到 vue.js動態(tài)添加css樣式 ,tab切換 ,touch,表單提交,驗證,toast,數(shù)據(jù)雙向綁定等。需要的朋友可以參考下2018-08-08