diff --git a/src/components/Input.vue b/src/components/Input.vue index ce8fdbd0..a8937113 100644 --- a/src/components/Input.vue +++ b/src/components/Input.vue @@ -6,7 +6,7 @@ interface Props { } const props = withDefaults(defineProps(), { size: 'medium' }) -defineEmits(['update:modelValue']) +defineEmits(['update:modelValue', 'enter']) const modelValue = ref('') @@ -18,11 +18,12 @@ onMounted(() => {