Kasir/resources/js/layouts/mainLayout.vue
2025-09-01 11:51:20 +07:00

14 lines
363 B
Vue

<template>
<div class="min-h-screen max-w-screen">
<NavigationComponent />
<div class="mx-2 md:mx-4 lg:mx-6 xl:mx-7 my-6">
<slot />
</div>
<Footer class="bottom-0 w-full" />
</div>
</template>
<script setup>
import Footer from '../components/Footer.vue'
import NavigationComponent from '../components/NavigationComponent.vue';
</script>