Skip to content

Commit

Permalink
docs: fix page render function
Browse files Browse the repository at this point in the history
  • Loading branch information
Baroshem committed Jun 13, 2024
1 parent 280fca9 commit 879ff7f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/pages/[...slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const { data: surround } = await useAsyncData(
useSeoMeta({
titleTemplate: '%s - Nuxt Cloudinary',
title: page.value?.title,
ogTitle: `${page.value?.title} - Nuxt Cloudinary`,
description: page.value?.description,
ogDescription: page.value?.description,
title: page?.value?.title,
ogTitle: `${page?.value?.title} - Nuxt Cloudinary`,
description: page?.value?.description,
ogDescription: page?.value?.description,
})
const headline = computed(() =>
Expand Down

0 comments on commit 879ff7f

Please sign in to comment.