Skip to content

Commit 879ff7f

Browse files
committed
docs: fix page render function
1 parent 280fca9 commit 879ff7f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/pages/[...slug].vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ const { data: surround } = await useAsyncData(
2626
2727
useSeoMeta({
2828
titleTemplate: '%s - Nuxt Cloudinary',
29-
title: page.value?.title,
30-
ogTitle: `${page.value?.title} - Nuxt Cloudinary`,
31-
description: page.value?.description,
32-
ogDescription: page.value?.description,
29+
title: page?.value?.title,
30+
ogTitle: `${page?.value?.title} - Nuxt Cloudinary`,
31+
description: page?.value?.description,
32+
ogDescription: page?.value?.description,
3333
})
3434
3535
const headline = computed(() =>

0 commit comments

Comments
 (0)