15 lines
243 B
Vue
15 lines
243 B
Vue
<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>
|