// 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 …
ts版车辆VIN码的校验算法: /* * @Autor: Jason * @Date: 2020-12-30 14:36:48 * @LastEditors: Jason * @LastEditTime: 2020-12-30 14:42:54 * @FilePath: /src/utils/verify_vin.ts * @description…
vue的axios请求返回值调取时报下面这错误 Property 'content' does not exist on type 'AxiosResponse<any>'.Vetur(2339) 解决方法是新增一个 axios.d.ts 文件,内容如下 import * as axios from 'axios' declare modul…