From 17dc1916aa1eaaf91d02eec7067fcc21f3cba308 Mon Sep 17 00:00:00 2001 From: JEECG <445654970@qq.com> Date: Mon, 13 Jan 2025 20:23:56 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90issues/7664=E3=80=91JVxeTable=E7=9A=84?= =?UTF-8?q?textarea=E7=BB=84=E4=BB=B6@blur=E4=BC=9A=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E5=8F=91=E7=94=9F=20---?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/Form/src/jeecg/components/JInputPop.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/jeecgboot-vue3/src/components/Form/src/jeecg/components/JInputPop.vue b/jeecgboot-vue3/src/components/Form/src/jeecg/components/JInputPop.vue index e0a44b7f..96bf878d 100644 --- a/jeecgboot-vue3/src/components/Form/src/jeecg/components/JInputPop.vue +++ b/jeecgboot-vue3/src/components/Form/src/jeecg/components/JInputPop.vue @@ -13,9 +13,9 @@ - + @@ -44,7 +44,7 @@ popContainer: propTypes.oneOfType([propTypes.string, propTypes.func]).def(''), }); const attrs = useAttrs(); - const emit = defineEmits(['change', 'update:value']); + const emit = defineEmits(['change', 'update:value', 'blur']); const visible = ref(false); const innerValue = ref(''); @@ -92,6 +92,10 @@ emit('change', value); emit('update:value', value); } + + const onInputBlur = (event) => { + emit('blur', event); + }