Property ‘payload‘ does not exist on type ‘AxiosResponse<any>‘. 问题解决

一 概述

Vue

二 解决方法

增加的一个名为axios.d.ts的文件

Property ‘payload‘ does not exist on type ‘AxiosResponse<any>‘. 问题解决

axios.d.ts的文件内容

import * as axios from 'axios'

declare module 'axios' {
    interface AxiosInstance {
        (config: AxiosRequestConfig): Promise<any>
    }
}

Vue接触的不多,暂时先如此,待续。。。

 

上一篇:IDEA 使用Mybatis效率飞起来的必备工具:MybatisCodeHelperPro 最新破解版,亲测可用!


下一篇:TS:Property ‘success‘ does not exist on type ‘AxiosResponse<any>‘.Vetur(2339)