【报错】vue3使用axios报错does not provide an export named ‘AxiosInstance‘
【报错】vue3使用axios报错does not provide an export named 'AxiosInstance'
·
原来使用这种方式写的
import axios, { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';
修改为
import axios from 'axios';
import type { AxiosInstance, AxiosRequestConfig, AxiosResponse } from 'axios';
更多推荐


所有评论(0)