Files
phundrak.com/frontend/app/components/Ui/BadgeList.vue
Lucien Cartier-Tilet 9f1d4db0de
All checks were successful
Publish Docker Images / build-and-publish (push) Successful in 9m29s
feat: fill pages
2025-11-13 22:13:40 +01:00

14 lines
288 B
Vue

<template>
<div v-if="tools" class="flex flex-row gap-1 flex-wrap">
<UBadge v-for="tool in tools" :key="tool" size="md" variant="solid">
{{ tool }}
</UBadge>
</div>
</template>
<script setup lang="ts">
const { tools } = defineProps<{
tools: string[];
}>();
</script>