唉,对于计算机的bug是真的很害怕。但是这个错误,我发现解决起来还是蛮简单的。
参考这篇博客:
(2条消息) 错误“Cannot read properties of undefined (reading ‘install‘) at Vue.use” 的解决方案_cannot read properties of undefined (reading 'inst_FunSober的博客-CSDN博客
原因分析
原因主要就是我们在下载vue-router的时候下载的是最新版的(以4开头),但是这个版本它是给vue3准备的,所以我们要卸载router,然后限制他的版本。
解决方法:
在终端运行:文章来源:https://www.toymoban.com/news/detail-535687.html
npm uninstall vue-router
npm install --save vue-router@3
成功解决!!!文章来源地址https://www.toymoban.com/news/detail-535687.html
到了这里,关于[已解决]Cannot read properties of undefined (reading ‘install‘)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!