22 lines
386 B
Vue
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>
|