Files
2025-07-30 18:45:57 +08:00

24 lines
721 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<!--
这是 Stack 组件的外层容器使用 UPageCard 组件实现
主要作用是将插槽内容以卡片形式垂直堆叠每个内容块之间有分割线
该容器带有圆角阴影效果并支持暗色模式下的分割线颜色
常用于将多个内容分组展示提升页面的层次感和可读性
-->
<ECard class="divide-y overflow-hidden rounded-xl [&:not(:first-child)]:mt-4 dark:divide-gray-700 shadow-sm ">
<div
v-for="(slot, i) in $slots.default?.() ?? []"
:key="i"
>
<component
:is="slot"
:in-stack="true"
/>
</div>
</ECard>
</template>
<script setup lang="ts">
defineSlots()
</script>