From c428559dfe5a87c25f833f736fd443af705ad972 Mon Sep 17 00:00:00 2001 From: Volker Rose Date: Tue, 26 Apr 2022 12:01:07 +0200 Subject: [PATCH 1/2] Make titleTemplate function form example clearer I was confused when trying the second "function form" of the `titleTemplate` as follows: ```vue useHead({ title => `My App - ${title}` }) ``` Which obviously make no sense, but it took a while to get head (Pun intended!) around the current documentation. Maybe my change makes it clearer for others? --- docs/content/2.guide/2.features/4.head-management.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.guide/2.features/4.head-management.md b/docs/content/2.guide/2.features/4.head-management.md index e3a0db5309c..2d07e9202c3 100644 --- a/docs/content/2.guide/2.features/4.head-management.md +++ b/docs/content/2.guide/2.features/4.head-management.md @@ -13,7 +13,7 @@ For example: ```vue