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

20 lines
301 B
Vue

<script setup lang="ts">
export interface Props {
stack: string[]
}
const props = withDefaults(defineProps<Props>(), {
stack: () => [],
})
</script>
<template>
{{ props.stack?.length }}
<CardPreview :data="props.stack.at(-1)">
<slot></slot>
</CardPreview>
</template>