docs: improve clarity in seo meta example (#29930)

This commit is contained in:
Stephanie Smith 2024-11-17 03:07:40 -08:00 committed by Daniel Roe
parent a6a803d27c
commit 64a4f0711b
No known key found for this signature in database
GPG Key ID: CBC814C393D93268

View File

@ -39,7 +39,7 @@ const title = ref('My title')
useSeoMeta({ useSeoMeta({
title, title,
description: () => `description: ${title.value}` description: () => `This is a description for the ${title.value} page`
}) })
</script> </script>
``` ```