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 GitHub
parent 8f92a6d038
commit 82dc24ec0b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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>
``` ```