This commit is contained in:
2025-12-25 03:51:29 +06:00
parent 4f91309f7f
commit 8265e2d719
16 changed files with 283 additions and 158 deletions

View File

@@ -8,7 +8,7 @@
style="height: 75px;"
>
<slot name="left">
<h1>
<h1 v-if="!!title">
{{ title }}
</h1>
</slot>
@@ -19,7 +19,12 @@
<script setup lang="ts">
defineProps<{
title: string
title?: string
secondary?: boolean
}>()
defineSlots<{
left: () => unknown
right: () => unknown
}>()
</script>