Skip to content
This repository was archived by the owner on Apr 6, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/content/1.getting-started/5.seo-meta.md
Original file line number Diff line number Diff line change
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