From 0e7d38ee4f6afd0bd500aad70a82ea30b5fc5af4 Mon Sep 17 00:00:00 2001 From: btea <2356281422@qq.com> Date: Sun, 2 Apr 2023 15:16:24 +0800 Subject: [PATCH] fix(components): [tree-select] add to global components (#12255) --- global.d.ts | 1 + typings/components.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/global.d.ts b/global.d.ts index c1544ecc0ae11..e3a8f7bd6943d 100644 --- a/global.d.ts +++ b/global.d.ts @@ -83,6 +83,7 @@ declare module '@vue/runtime-core' { ElTransfer: typeof import('element-plus')['ElTransfer'] ElTree: typeof import('element-plus')['ElTree'] ElTreeV2: typeof import('element-plus')['ElTreeV2'] + ElTreeSelect: typeof import('element-plus')['ElTreeSelect'] ElUpload: typeof import('element-plus')['ElUpload'] ElSpace: typeof import('element-plus')['ElSpace'] ElSkeleton: typeof import('element-plus')['ElSkeleton'] diff --git a/typings/components.d.ts b/typings/components.d.ts index e14606c3d3b19..2911884c3a8b0 100644 --- a/typings/components.d.ts +++ b/typings/components.d.ts @@ -84,6 +84,7 @@ declare module '@vue/runtime-core' { ElTooltip: typeof import('../packages/element-plus')['ElTooltip'] ElTransfer: typeof import('../packages/element-plus')['ElTransfer'] ElTree: typeof import('../packages/element-plus')['ElTree'] + ElTreeSelect: typeof import('../packages/element-plus')['ElTreeSelect'] ElTreeV2: typeof import('../packages/element-plus')['ElTreeV2'] ElUpload: typeof import('../packages/element-plus')['ElUpload'] ElSpace: typeof import('../packages/element-plus')['ElSpace']