feat: fill pages
This commit is contained in:
13
frontend/app/components/Ui/BadgeList.vue
Normal file
13
frontend/app/components/Ui/BadgeList.vue
Normal file
@@ -0,0 +1,13 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user