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

10 lines
168 B
Vue
Raw Normal View History

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