Property ‘payload‘ does not exist on type ‘AxiosResponse<any>‘. 问题解决
一 概述Vue二 解决方法增加的一个名为axios.d.ts的文件axios.d.ts的文件内容import * as axios from 'axios'declare module 'axios' {interface AxiosInstance {(config: AxiosRequestConfig): Promise<any>}}Vue接触的不多,暂时先如此,待续。。。...
·
一 概述
二 解决方法
增加的一个名为axios.d.ts的文件
axios.d.ts的文件内容
import * as axios from 'axios'
declare module 'axios' {
interface AxiosInstance {
(config: AxiosRequestConfig): Promise<any>
}
}
Vue接触的不多,暂时先如此,待续。。。
更多推荐
已为社区贡献1条内容
所有评论(0)