其他分享
首页 > 其他分享> > 关于 Property 'create' does not exist on type 'typeof import("axios") 的问题

关于 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>
  }
}

标签:axios,create,ts,module,does,exist,import
来源: https://www.cnblogs.com/KleinBlue/p/15846277.html