Initial commit

This commit is contained in:
2025-07-28 23:20:53 +00:00
commit 4c22e0c125
502 changed files with 59964 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<script setup lang="ts">
interface Props {
title: string
divider?: boolean
}
defineOptions({
inheritAttrs: false,
})
const props = withDefaults(defineProps<Props>(), {
divider: true,
})
</script>
<template>
<VDivider v-if="props.divider" />
<div
class="customizer-section"
v-bind="$attrs"
>
<div>
<VChip
label
size="small"
color="primary"
rounded="sm"
>
{{ props.title }}
</VChip>
</div>
<slot />
</div>
</template>