From 98a71d206148d155bad4dc6dc11509233d747c3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BD=95=E5=98=89=E6=82=A6?= <2834007710@qq.com> Date: Mon, 16 Jun 2025 10:18:22 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=F0=9F=93=9A=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E4=BA=A4=E6=B5=813=E7=BE=A4=E4=BA=8C=E7=BB=B4=E7=A0=81?= =?UTF-8?q?=E5=9B=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc-auto-import.json | 2 ++ README.md | 2 +- types/auto-imports.d.ts | 4 ++-- types/components.d.ts | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.eslintrc-auto-import.json b/.eslintrc-auto-import.json index af1083b..313e671 100644 --- a/.eslintrc-auto-import.json +++ b/.eslintrc-auto-import.json @@ -5,6 +5,8 @@ "ComputedRef": true, "DirectiveBinding": true, "EffectScope": true, + "ElMessage": true, + "ElMessageBox": true, "ExtractDefaultPropTypes": true, "ExtractPropTypes": true, "ExtractPublicPropTypes": true, diff --git a/README.md b/README.md index de4e174..ee897c1 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ pnpm cz # 规范提交(自动执行lint) ## 🤝 社区支持 | 👨‍👨‍👧‍👦 微信交流群 | 💩 作者微信 | |---------------------------------------|-------------------------------------| -| 微信交流群
扫码加入交流群
获取最新动态与技术支持 | 作者vx
群过期或失效?
扫码添加作者微信 | +| 微信交流群
扫码加入交流群
获取最新动态与技术支持 | 作者vx
群过期或失效?
扫码添加作者微信 | ## 🌹 赠人玫瑰,手有余香
diff --git a/types/auto-imports.d.ts b/types/auto-imports.d.ts index 6cd1a87..f06b3ba 100644 --- a/types/auto-imports.d.ts +++ b/types/auto-imports.d.ts @@ -7,8 +7,8 @@ export {} declare global { const EffectScope: typeof import('vue')['EffectScope'] - const ElMessage: (typeof import("element-plus/es"))["ElMessage"] - const ElMessageBox: (typeof import("element-plus/es"))["ElMessageBox"] + const ElMessage: typeof import('element-plus/es')['ElMessage'] + const ElMessageBox: typeof import('element-plus/es')['ElMessageBox'] const computed: typeof import('vue')['computed'] const createApp: typeof import('vue')['createApp'] const customRef: typeof import('vue')['customRef'] diff --git a/types/components.d.ts b/types/components.d.ts index f819d43..eb991f0 100644 --- a/types/components.d.ts +++ b/types/components.d.ts @@ -3,7 +3,7 @@ // Generated by unplugin-vue-components // Read more: https://github.com/vuejs/core/pull/3399 // biome-ignore lint: disable -export {}; +export {} /* prettier-ignore */ declare module 'vue' {