SvgPanZoom.vue:4 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '_c')
时间: 2023-08-17 07:13:24 浏览: 176
根据引用\[1\]和引用\[2\]的内容,问题出现在main.js文件中对axios的引用方式上。正确的写法是使用import语句引入axios,并将其添加到Vue的原型上。正确的写法如下:
```javascript
import axios from "axios";
Vue.prototype.axios = axios;
```
而错误的写法是使用Vue.use()加载axios插件,这是不支持的。因此,你需要将错误的代码修改为正确的写法。
另外,根据引用\[3\]的内容,问题可能还与SvgPanZoom.vue文件中的代码有关。具体来说,错误信息中提到了'_c'属性的读取错误。这可能是由于在SvgPanZoom.vue文件中使用了未定义的变量或方法导致的。你需要检查SvgPanZoom.vue文件的第4行代码,确保没有对未定义的'_c'属性进行操作。
综上所述,你需要修改main.js文件中对axios的引用方式,并检查SvgPanZoom.vue文件中的代码,确保没有使用未定义的变量或方法。这样可以解决SvgPanZoom.vue:4 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '_c')的问题。
#### 引用[.reference_title]
- *1* *2* [Vue报错: Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘protocol‘)](https://blog.csdn.net/weixin_55971433/article/details/125529573)[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^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
- *3* [Vue报错:Uncaught (in promise) TypeError: Cannot read properties of undefined (reading ‘cancelToken...](https://blog.csdn.net/weixin_42343966/article/details/128454897)[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^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文