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>
<h2 id="main-target" tabindex="-1" class="text-4xl font-bold mb-3">
<slot name="default">
{{ text }}
</slot>
</h2>
</template>