mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
13 lines
241 B
Vue
13 lines
241 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
text?: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<h1 id="main-target" tabindex="-1" class="text-4xl font-bold mb-3">
|
|
<slot name="default">
|
|
{{ text }}
|
|
</slot>
|
|
</h1>
|
|
</template>
|