15 lines
263 B
Vue
15 lines
263 B
Vue
<template>
|
|
<main class="px-4 mt-4">
|
|
<header v-if="title" class="font-bold uppercase mb-4">{{ title }}</header>
|
|
<section>
|
|
<slot></slot>
|
|
</section>
|
|
</main>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
title: String,
|
|
});
|
|
</script>
|