mirror of
https://github.com/kevin-DL/InertiaJS-Vue3-Tailwind-CSS-AdonisJS.git
synced 2026-01-21 06:44:59 +00:00
first commit
This commit is contained in:
20
resources/js/Shared/Layout.vue
Normal file
20
resources/js/Shared/Layout.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user