fix: type error

This commit is contained in:
Methapon2001 2024-04-19 11:46:06 +07:00
parent 518a6b71f8
commit a509215aef

View file

@ -25,8 +25,8 @@ defineProps<{
defineEmits<{
(e: 'deleteCard', id: string): void;
(e: 'updateCard', id: string): void;
(e: 'enterCard', id: string): void;
(e: 'updateCard', action: 'FORM' | 'INFO', id: string): void;
(e: 'enterCard', action: 'FORM' | 'INFO', id: string): void;
(e: 'toggleStatus', id: string): void;
}>();
</script>