RuralDatabase/apps/web/components/common/page/title.vue

29 lines
436 B
Vue
Raw Normal View History

2024-06-30 21:39:37 +08:00
<script setup lang="ts">
defineProps<{
title?: string
badge?: string|number
}>()
</script>
<template>
<UDashboardToolbar class=" border-0 my-1 mt-2">
<template #left>
<HeadingH1>
{{ title }}
</HeadingH1>
<UBadge variant="soft">
{{ badge }}
</UBadge>
</template>
<template #right>
<slot
name="right"
/>
</template>
</UDashboardToolbar>
</template>