From af54405381d60bfadb383996a6ad64724b80f996 Mon Sep 17 00:00:00 2001
From: tangjinzhou <415800467@qq.com>
Date: Tue, 30 Nov 2021 22:22:09 +0800
Subject: [PATCH] fix: textarea not trigger blur event

---
 components/input/TextArea.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/components/input/TextArea.tsx b/components/input/TextArea.tsx
index 2a4d4b037..544a49781 100644
--- a/components/input/TextArea.tsx
+++ b/components/input/TextArea.tsx
@@ -123,6 +123,7 @@ export default defineComponent({
         showCount: null,
         prefixCls,
         onInput: this.handleChange,
+        onBlur: this.handleBlur,
         onChange: this.handleChange,
         onKeydown: this.handleKeyDown,
       };