5👍
✅
You seem to be using Vue 3. The warning tells you that you did not declare your event before using it in your component. Here is an example:
export default {
name: "YourComponent",
emits: ["deleteTodoEvent"], // <--- this is what the warning in hinting to
setup(_,{ emit }) {
...
},
};
Source:stackexchange.com