Uncaught TypeError: Cannot read properties of undefined (reading 'install') at Vue.use (vue.runtime.esm.js:5120:1)
时间: 2023-10-17 17:28:41 浏览: 158
这个错误通常表示在使用Vue.use函数时发生了问题,具体是尝试读取未定义的属性'install'导致的。根据引用中提供的信息,在文件app.js的第167行发生了这个错误。在这个错误中,可能是在尝试使用VueRouter插件时出现了问题。根据引用中的信息,可能是 VueRouter 没有正确导出,在vue-router中可能需要使用默认导出。你可以尝试按照引用中的建议卸载之前的vue-router,然后重新安装指定版本的vue-router,例如3.1.3版本,以解决这个错误。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [【Vue报错】app.js:167 Uncaught TypeError: Cannot read properties of undefined (reading ‘install‘)](https://blog.csdn.net/weixin_56035334/article/details/126882218)[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: 100%"]
[ .reference_list ]
阅读全文