mirror of
https://github.com/kevin-DL/InertiaJS-Vue3-Tailwind-CSS-AdonisJS.git
synced 2026-01-11 10:54:25 +00:00
20 lines
294 B
Vue
20 lines
294 B
Vue
<template>
|
|
<navbar></navbar>
|
|
<div class="flex items-center justify-center w-full h-screen bg-gray-100">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import navbar from './navbar.vue';
|
|
|
|
export default {
|
|
components: { navbar },
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {},
|
|
};
|
|
</script> |