12 lines
216 B
Vue
12 lines
216 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<NuxtRouteAnnouncer />
|
||
|
<NuxtWelcome />
|
||
|
</div>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
layout: 'default_t1', // 或者你可以指定其他自定義的佈局
|
||
|
|
||
|
}
|
||
|
</script>
|