Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

docs: match the open graph protocol markup #8959

Merged
merged 1 commit into from Nov 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/1.getting-started/5.seo-meta.md
Expand Up @@ -234,7 +234,7 @@ And then in your layout file, you might use the route's metadata you have previo
const route = useRoute()
useHead({
meta: [{ name: 'og:title', content: `App Name - ${route.meta.title}` }]
meta: [{ property: 'og:title', content: `App Name - ${route.meta.title}` }]
})
</script>
```
Expand Down