yunohost-portal/components/PageTitle.vue

14 lines
241 B
Vue
Raw Normal View History

2023-08-06 16:27:24 +02:00
<script setup lang="ts">
const props = defineProps<{
text?: string
}>()
</script>
<template>
2023-08-28 15:08:33 +02:00
<h1 id="main-target" tabindex="-1" class="text-4xl font-bold mb-3">
2023-08-06 16:27:24 +02:00
<slot name="default">
{{ text }}
</slot>
2023-08-28 15:08:33 +02:00
</h1>
2023-08-06 16:27:24 +02:00
</template>