2022-09-20 19:59:52 +00:00
|
|
|
<template>
|
|
|
|
<div class="main-layout min-h-screen flex flex-col">
|
|
|
|
<navbar />
|
|
|
|
|
|
|
|
<child class="flex-grow" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-01-21 11:57:37 +00:00
|
|
|
import Navbar from '~/components/Navbar.vue'
|
2022-09-20 19:59:52 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'MainLayout',
|
|
|
|
|
|
|
|
components: {
|
2023-10-14 16:24:44 +00:00
|
|
|
Navbar
|
2022-09-20 19:59:52 +00:00
|
|
|
},
|
|
|
|
|
2023-10-14 16:24:44 +00:00
|
|
|
computed: {}
|
2022-09-20 19:59:52 +00:00
|
|
|
}
|
|
|
|
</script>
|