From 5c7715813d50f9c6b8a1e4bf6646227621e87494 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=8D=8E=E6=99=A8?= <hclj37@gmail.com>
Date: Thu, 26 Jan 2023 21:48:52 +0800
Subject: [PATCH] docs: mention head composable as alternative to `useHead`
 (#18552)

---
 docs/1.getting-started/5.seo-meta.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/1.getting-started/5.seo-meta.md b/docs/1.getting-started/5.seo-meta.md
index 01f819ee8..75409070b 100644
--- a/docs/1.getting-started/5.seo-meta.md
+++ b/docs/1.getting-started/5.seo-meta.md
@@ -300,7 +300,7 @@ In the example below, `titleTemplate` is set either as a string with the `%s` pl
 
 ### Add External CSS
 
-The example below inserts Google Fonts using the `link` property of the `useHead` composable:
+The example below shows how you might enable Google Fonts using either the `link` property of the `useHead` composable or using the `<Link>` component:
 
 ::code-group