main
vue 19 lines 391 Bytes
Raw
1 <template>
2 <div class="flex flex-col gap-2">
3 <div v-for="item of list" :key="item.label" class="flex items-center justify-between gap-2 text-xs">
4 <strong>{{ item.label }}</strong>
5 <code class="text-xxs">
6 {{ item.value }}
7 </code>
8 </div>
9 </div>
10 </template>
11
12 <script setup lang="ts">
13 defineProps<{
14 list: {
15 label: string
16 value: string | number | null
17 }[]
18 }>()
19 </script>