2021-01-09 12:22:36 +01:00
|
|
|
<template>
|
|
|
|
<section>
|
2021-04-12 00:09:56 +02:00
|
|
|
<BaseTitle v-if="title" center size="huge">{{ title }}</BaseTitle>
|
2021-01-09 12:22:36 +01:00
|
|
|
<slot />
|
|
|
|
</section>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import BaseTitle from "@/components/base/BaseTitle";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: "BaseSection",
|
|
|
|
components: {
|
|
|
|
BaseTitle
|
|
|
|
},
|
|
|
|
props: {
|
|
|
|
title: {
|
|
|
|
required: false,
|
|
|
|
default: ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style></style>
|