Files
front/components/CardSlot.vue
T
2024-04-20 00:36:27 +02:00

9 lines
177 B
Vue

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