// main.ts import { createApp } from "vue"; import App from "./App.vue"; import store from "./store"; const app = createApp(App); useAnt(app); store.forEach(({ modelName, key …
vue的axios请求返回值调取时报下面这错误 Property 'content' does not exist on type 'AxiosResponse<any>'.Vetur(2339) 解决方法是新增一个 axios.d.ts 文件,内容如下 import * as axios from 'axios' declare modul…