12 lines
173 B
Vue
12 lines
173 B
Vue
<template>
|
|
<div>
|
|
<AppHeader/>
|
|
<slot/>
|
|
<AppFooter/>
|
|
<ContactFloatingButton/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 自動導入 AppHeader 組件
|
|
</script> |