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接触的不多,暂时先如此,待续。。。

 

猜你喜欢

转载自blog.csdn.net/calm_encode/article/details/114155405