11 lines
154 B
Vue
11 lines
154 B
Vue
<template>
|
|
<div>
|
|
<AppHeader />
|
|
<slot />
|
|
<!-- <AppFooter />-->
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// 自動導入 AppHeader 組件
|
|
</script> |