赞
踩
如果你是用的vuecli
创建的项目,那么请在res
文件夹下新建axios.d.ts
文件,添加以下内容:
/* eslint-disable no-undef */
/* eslint-disable no-unused-vars */
import * as axios from 'axios'
declare module 'axios' {
interface AxiosInstance {
(config: AxiosRequestConfig): Promise<any>
}
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。