beehive/app/layouts/default.vue

12 lines
173 B
Vue
Raw Permalink Normal View History

2025-10-22 10:57:17 +08:00
<template>
<div>
2025-10-23 15:30:21 +08:00
<AppHeader/>
<slot/>
<AppFooter/>
2025-10-23 16:01:35 +08:00
<ContactFloatingButton/>
2025-10-22 10:57:17 +08:00
</div>
</template>
<script setup>
// 自動導入 AppHeader 組件
</script>