GlassCard.vue 260 Bytes
<template>
  <div class="bg-white/30 backdrop-blur-lg rounded-xl shadow-lg p-6">
    <slot></slot>
  </div>
</template>

<script setup>
/**
 * GlassCard 组件
 * @description 一个具有玻璃拟态效果的卡片容器,用于包裹内容。
 */
</script>