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); + }