<!-- ❗Please don't ignore this template.❗ If you ignore it, we're just going to respond asking you to fill it out, which wastes everyone's time. The more relevant information you can include, the faster we can find the issue and fix it without asking you for more info. --> <!-- Before posting the issue, please confirm that the problem you're getting is not related with your code editor configuration. To make sure it's not, run: yarn eslint src/your-file.vue --> **What did you do?** <!-- Please include the actual source code causing the issue. --> ```vue <script setup lang="ts"> defineModel<string>(); </script> <template> <input @input="$emit('update:modelValue', $event.target.value)" /> </template> ``` This causes warning/error: `The "update:modelValue" event has been triggered but not declared on `defineEmits`.`