mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
14 lines
241 B
Vue
14 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>
|