Files
front/components/CardSlot.vue
T
2024-04-05 18:48:37 +02:00

9 lines
191 B
Vue

<script setup lang="ts">
const props = defineProps(['stack'])
</script>
<template>
<span>
<CardPreview v-for="c in props.stack" :data="c" :key="c.uuid" />
</span>
</template>