main
vue 17 lines 380 Bytes
Raw
1 <template>
2 <CardEntity>
3 <div class="flex flex-col gap-1">
4 <p>
5 {{ artifact.name }}
6 </p>
7 {{ artifact.description }}
8 </div>
9 </CardEntity>
10 </template>
11
12 <script setup lang="ts">
13 import type { Artifact } from "@/types/artifacts.d"
14 import CardEntity from "@/components/common/cards/CardEntity.vue"
15
16 const { artifact } = defineProps<{ artifact: Artifact }>()
17 </script>