Skip to content

Commit a4bd1a3

Browse files
committed
chore: update vue-file.vue to use NuxtLayout component
1 parent adac73a commit a4bd1a3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed
Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
<script setup>
22
definePageMeta({
3-
layout: 'reversed'
3+
documentDriven: {
4+
surround: false
5+
}
46
})
57
68
const { page } = useContent()
79
useContentHead(page)
810
</script>
911

1012
<template>
11-
<ContentRenderer :value="page" />
13+
<NuxtLayout name="reversed">
14+
<ContentRenderer :value="page" />
15+
</NuxtLayout>
1216
</template>

0 commit comments

Comments
 (0)