tethys.backend/resources/js/Components/SectionMain.vue

10 lines
178 B
Vue
Raw Permalink Normal View History

2023-03-03 15:54:28 +00:00
<script setup>
import { containerMaxW } from '@/config';
2023-03-03 15:54:28 +00:00
</script>
<template>
2023-03-17 15:13:37 +00:00
<section class="p-6" v-bind:class="containerMaxW">
<slot />
</section>
2023-03-03 15:54:28 +00:00
</template>