20 lines
301 B
Vue
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> |