shadcn-vue/apps/www/.vitepress/theme/components/PageHeader.vue
2023-09-05 14:29:34 +08:00

17 lines
305 B
Vue

<script setup lang="ts">
import { cn } from '@/lib/utils'
// import WrapBalancer from 'vue-wrap-balancer'
</script>
<template>
<section
:class="cn(
'flex max-w-[980px] flex-col items-start gap-2 px-4 pt-8 md:pt-12',
$attrs.class ?? '',
)"
>
<slot />
</section>
</template>