Files
tgCrewLanding/src/components/SlideTemplate.vue
2025-07-16 22:08:48 +03:00

22 lines
386 B
Vue

<template>
<div class="flex column no-wrap">
<div class="flex w100 justify-center text-h4 q-mt-md text-bold q-pa-md text-grey">
{{ $t(title) }}
</div>
<div class="flex w100 justify-center q-pb-md column items-center">
<slot/>
</div>
</div>
</template>
<script setup lang="ts">
defineProps({
title: String
})
</script>
<style scoped>
</style>