19 lines
276 B
Vue
19 lines
276 B
Vue
|
|
<template>
|
||
|
|
<div class="min-h-screen bg-gray-50">
|
||
|
|
<!-- Navigation -->
|
||
|
|
<AppHeader />
|
||
|
|
|
||
|
|
<!-- Main Content -->
|
||
|
|
<main>
|
||
|
|
<slot />
|
||
|
|
</main>
|
||
|
|
|
||
|
|
<!-- Footer -->
|
||
|
|
<AppFooter />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup>
|
||
|
|
// Layout configuration
|
||
|
|
</script>
|