tethys.backend/resources/js/Layouts/Auth.vue

15 lines
243 B
Vue
Raw Permalink Normal View History

2023-03-03 15:54:28 +00:00
<template>
<div>
<!-- <h1>Auth Layout</h1>
<slot></slot> -->
<Header />
<!-- <main class="px-6"> -->
<slot></slot>
<!-- </main> -->
</div>
</template>
<script setup>
import Header from '@/Components/Header.vue';
</script>