PortIO/resources/js/components/Layout.vue
2023-03-14 22:33:06 +08:00

20 lines
214 B
Vue

<template>
<main class="py-4">
<div class="container mb-8">
<router-view />
</div>
</main>
</template>
<script setup>
</script>
<style scoped>
.mb-8 {
margin-bottom: 8rem;
}
</style>