vue3 ts axois.ts Property 'use' does not exist on type 'typeof
时间: 2024-05-14 21:18:08 浏览: 146
这个错误可能是因为您使用的Axios版本不支持Vue3或TypeScript。您可以尝试升级Axios版本,或者在您的代码中添加以下行:
```typescript
import axios from 'axios'
import Vue from 'vue'
Vue.prototype.$http = axios
```
这将在Vue实例中添加一个$http属性,该属性将使用axios进行HTTP请求。请确保您已经安装了axios和@types/axios(如果您正在使用TypeScript)。
阅读全文