2025年2月18日
摘要: 安装"unplugin-auto-import"插件,在vite.config.ts中配置该插件以自动生成auto-imports.d.ts文件 例如: 然后执行npm run dev,会自动在项目根目录下生成auto-imports.d.ts文件‌; 阅读全文
posted @ 2025-02-18 17:20 久闻 阅读(79) 评论(0) 推荐(0)
摘要: axios({ url: `url`, method: "post", data: { 参数... }, responseType: "blob", }) .then((res)=>{ const elink = document.createElement("a"); const fileName 阅读全文
posted @ 2025-02-18 16:08 久闻 阅读(29) 评论(0) 推荐(0)