RuralDatabase/apps/web/components/common/heading/h1.vue

20 lines
286 B
Vue
Raw Normal View History

2024-06-30 21:39:37 +08:00
<script setup lang="ts">
defineProps<{
label?:string
}>()
</script>
<template>
<h1 class="flex items-center gap-1.5 font-semibold text-gray-900 dark:text-white min-w-0">
<span class="truncate">
<slot>
{{ label }}
</slot>
</span>
</h1>
</template>