14 lines
267 B
Vue
14 lines
267 B
Vue
<template>
|
|
<div>
|
|
<!-- <h1>Default Layout</h1>
|
|
<slot></slot> -->
|
|
<Header />
|
|
<main class="px-6">
|
|
<slot></slot>
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import Header from '@/Components/Header.vue';
|
|
</script> |