opnform/resources/js/layouts/default.vue

22 lines
291 B
Vue
Raw Normal View History

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>
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>