CloudBridge/layouts/default.vue
2025-09-04 18:01:27 +08:00

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>