vue-router Cannot read properties of undefined (reading 'go')
时间: 2023-10-12 14:07:06 浏览: 369
这个错误是由于Vue版本和Vue Router版本不匹配导致的。根据引用中的描述,你的项目使用的是Vue 2.7版本,而直接安装了最新的Vue Router 4.1.6版本,这个版本是适用于Vue 3.0的。
为了解决这个问题,你可以按照引用中的解决方案进行操作。在项目根目录下打开命令行终端,并依次运行以下命令:
1. npm uninstall vue-router:卸载当前错误的Vue Router版本。
2. npm install --save vue-router@3:安装适用于Vue 2.0的Vue Router 3版本。
安装完成后,重新启动项目即可。这样就可以解决"Cannot read properties of undefined (reading 'go')"的错误了。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [VUE -Cannot read properties of undefined (reading ‘install‘)](https://blog.csdn.net/m0_73877265/article/details/130347009)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *3* [ChatGPT聊天微信小程序源码适配H5和WEB端.zip](https://download.csdn.net/download/m0_66047725/88222777)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文