Files
memberApp/src/vueLib/general/SiteTitle.vue
2025-11-16 08:40:42 +01:00

13 lines
282 B
Vue

<template>
<h4 class="text-primary text-bold text-center" :style="{ margin: props.marging + 'px' }">
{{ props.title }}
</h4>
</template>
<script setup lang="ts">
const props = defineProps({
title: { type: String },
marging: { type: Number, default: 28 },
});
</script>