Files
framit/app/components/Ui/BadgeListCard.vue
T

17 lines
301 B
Vue
Raw Normal View History

2025-11-11 19:12:21 +01:00
<template>
<UPageCard class="bg-background-100 my-10">
<p class="text-xl">
<slot />
</p>
<UiBadgeList :tools="tools" />
</UPageCard>
</template>
<script setup lang="ts">
import type { Tool } from '~/types/tool';
2025-11-11 19:12:21 +01:00
const { tools } = defineProps<{
tools: Tool[];
2025-11-11 19:12:21 +01:00
}>();
</script>