basic card display

This commit is contained in:
2024-04-05 18:48:37 +02:00
parent 3657d6a888
commit 05d711644d
4 changed files with 15 additions and 13 deletions
+4 -4
View File
@@ -1,9 +1,9 @@
<script setup lang="ts">
defineProps(['cards'])
const props = defineProps(['stack'])
</script>
<template>
<div>
<CardPreview v-for="c in cards" :data="c" :key="c.uuid" />
</div>
<span>
<CardPreview v-for="c in props.stack" :data="c" :key="c.uuid" />
</span>
</template>