diff --git a/resources/js/components/ui/card/Card.vue b/resources/js/components/ui/card/Card.vue index d0581cdd..79bc4249 100644 --- a/resources/js/components/ui/card/Card.vue +++ b/resources/js/components/ui/card/Card.vue @@ -4,11 +4,18 @@ import type { HTMLAttributes } from 'vue'; const props = defineProps<{ class?: HTMLAttributes['class']; + 'aria-labelledby'?: string; + 'aria-describedby'?: string; }>();