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,31 @@
<script setup lang="ts">
const props = defineProps<{
title: string
}>()
defineEmits<{
(e: 'cancel', el: MouseEvent): void
}>()
</script>
<template>
<div class="pa-5 d-flex align-center">
<h5 class="text-h5">
{{ props.title }}
</h5>
<VSpacer />
<slot name="beforeClose" />
<IconBtn
class="text-medium-emphasis ms-1"
size="x-small"
@click="$emit('cancel', $event)"
>
<VIcon
size="24"
icon="ri-close-line"
/>
</IconBtn>
</div>
</template>