19 lines
326 B
Vue
19 lines
326 B
Vue
<script setup lang="ts">
|
|
// Default layout with Header and Footer components
|
|
</script>
|
|
|
|
<template>
|
|
<div class="min-h-screen flex flex-col">
|
|
<!-- Header -->
|
|
<CommonHeader />
|
|
|
|
<!-- Main content -->
|
|
<main class="flex-1">
|
|
<slot />
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<CommonFooter />
|
|
</div>
|
|
</template>
|