vue2安裝vue-router報錯的解決方法
項目場景:
在vue2中安裝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版本問題,新版本對下載要求比較嚴(yán)格。
解決方案:
根據(jù)錯誤提示,在命令行中加入–legacy-peer-deps,由于vue與vue-router版本兼容的問題,需要在安裝語句后加入需要下載vue-router版本,不然會下載最新的vue-router版本。
npm install --legacy-peer-deps vue-router@3.5.2
在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.5.2",
"vuex": "^3.6.2"
},
附加:
利用<router-link>可以制作導(dǎo)航,可以鏈接到其他頁面。
<router-link to="/">[顯示字段]</router-link>
to后面接的是導(dǎo)航的路徑
[顯示字段] :就是導(dǎo)航名稱,比如首頁。
在App.vue頁面添加導(dǎo)航鏈接,實現(xiàn)導(dǎo)航
<template>
<div id="app">
<img src="./assets/logo.png">
<div>
導(dǎo)航
<p>
<router-link to="/demo">跳轉(zhuǎn)到demo頁面</router-link>
</p>
<p>
<router-link to="/">跳轉(zhuǎn)到首頁面</router-link>
</p>
</div>
<router-view/>
</div>
</template>

這樣就實現(xiàn)了用<router-link>標(biāo)簽設(shè)置導(dǎo)航,點擊就可以實現(xiàn)頁面內(nèi)容的變化。
總結(jié)
到此這篇關(guān)于vue2安裝vue-router報錯的文章就介紹到這了,更多相關(guān)vue2安裝vue-router報錯內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
解決element-ui el-input賦值后不能編輯的問題
這篇文章主要介紹了解決element-ui el-input賦值后不能編輯的問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-02-02
vue中使用百度腦圖kityminder-core二次開發(fā)的實現(xiàn)
這篇文章主要介紹了vue中使用百度腦圖kityminder-core二次開發(fā)的實現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-09-09
如何用vue3+Element?plus實現(xiàn)一個完整登錄功能
要實現(xiàn)用戶的登錄功能,可以使用Vue3和Element?Plus,下面這篇文章主要給大家介紹了關(guān)于如何基于Vue3和Element?Plus組件庫實現(xiàn)一個完整的登錄功能,文中提供了詳細(xì)的代碼示例,需要的朋友可以參考下2023-10-10
基于better-scroll 實現(xiàn)歌詞聯(lián)動功能的代碼
BetterScroll 是一款重點解決移動端(已支持 PC)各種滾動場景需求的插件,BetterScroll 是使用純 JavaScript 實現(xiàn)的,這意味著它是無依賴的。本文基于better-scroll 實現(xiàn)歌詞聯(lián)動功能,感興趣的朋友跟隨小編一起看看吧2020-05-05

