关于 Property 'create' does not exist on type 'typeof import("axios") 的问题

Vue项目中的src目录下新建axios.d.ts文件并键入以下代码,并重新编译运行。

import * as axios from 'axios'

declare module 'axios' {
  interface AxiosInstance {
    (config: AxiosRequestConfig): Promise<any>
  }
}
posted @ 2022-01-26 13:52  AvenCheung  阅读(968)  评论(0编辑  收藏  举报