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版本問題,新版本對下載要求比較嚴格。
解決方案
根據錯誤提示,在命令行中加入–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"
},總結
以上為個人經驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關文章
Vue實現登錄保存token并校驗實現保存登錄狀態(tài)的操作代碼
這篇文章主要介紹了Vue實現登錄保存token并校驗實現保存登錄狀態(tài),本文通過示例代碼給大家介紹的非常詳細,感興趣的朋友跟隨小編一起看看吧2024-02-02
關于vue3默認把所有onSomething當作v-on事件綁定的思考
這篇文章主要介紹了關于vue3默認把所有`onSomething`當作`v-on`事件綁定的思考,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友們下面隨著小編來一起學習學習吧2020-05-05

