yunohost-portal/components/PageTitle.vue
2023-08-06 16:27:24 +02:00

13 lines
241 B
Vue

<script setup lang="ts">
const props = defineProps<{
text?: string
}>()
</script>
<template>
<h2 id="main-target" tabindex="-1" class="text-4xl font-bold mb-3">
<slot name="default">
{{ text }}
</slot>
</h2>
</template>