From f2f03ccce6c562dac3b5dee36fa280bf40a0cb06 Mon Sep 17 00:00:00 2001 From: haoxr <1490493387@qq.com> Date: Sun, 12 Mar 2023 21:51:16 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=87=AA=E5=8A=A8=E5=AF=BC=E5=85=A5?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E7=BC=BA=E5=A4=B1=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: 225c1d5b33836a49dadca1493a8327d971a2c459 --- src/types/auto-imports.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/auto-imports.d.ts b/src/types/auto-imports.d.ts index 9ea2d5dd..eb6c8426 100644 --- a/src/types/auto-imports.d.ts +++ b/src/types/auto-imports.d.ts @@ -2,8 +2,10 @@ export {} declare global { const EffectScope: typeof import('vue')['EffectScope'] + const ElForm: typeof import('element-plus/es')['ElForm'] const ElMessage: typeof import('element-plus/es')['ElMessage'] const ElMessageBox: typeof import('element-plus/es')['ElMessageBox'] + const ElTree: typeof import('element-plus/es')['ElTree'] const asyncComputed: typeof import('@vueuse/core')['asyncComputed'] const autoResetRef: typeof import('@vueuse/core')['autoResetRef'] const computed: typeof import('vue')['computed'] @@ -270,8 +272,10 @@ import { UnwrapRef } from 'vue' declare module 'vue' { interface ComponentCustomProperties { readonly EffectScope: UnwrapRef + readonly ElForm: UnwrapRef readonly ElMessage: UnwrapRef readonly ElMessageBox: UnwrapRef + readonly ElTree: UnwrapRef readonly asyncComputed: UnwrapRef readonly autoResetRef: UnwrapRef readonly computed: UnwrapRef