Cannot read properties of undefined (reading ‘install‘)

Cannot read properties of undefined (reading ‘install‘)_第1张图片
BUG让我强大!!!虚晃一枪—>

原因主要就是我们在下载vue-router的时候默认下载的是最新版的(以4开头),但是这个版本它是给vue3准备的,所以我们要卸载router,然后限制他的版本。

解决方法:
在终端运行:

npm uninstall vue-router
npm install --save vue-router@3

成功解决!!!

你可能感兴趣的:(vue.js,javascript,前端)