This commit is contained in:
2024-11-29 00:09:09 +01:00
parent 573f93b163
commit d72ff70789

View File

@@ -2,7 +2,7 @@
import Todo from '../todo';
import { ref,defineProps, nextTick } from 'vue';
const props = defineProps<{ todo: Todo}>()
const props = defineProps<{todo: Todo}>()
const emit = defineEmits(['deleteTodo'])