Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
docs: split into multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe authored Apr 26, 2022
1 parent c428559 commit d1c4f3c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/content/2.guide/2.features/4.head-management.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ For example:
```vue
<script setup>
useHead({
titleTemplate: 'My App - %s', // or, titleTemplate: (title) => `My App - ${title}`
titleTemplate: 'My App - %s',
// or, instead:
// titleTemplate: (title) => `My App - ${title}`,
viewport: 'width=device-width, initial-scale=1, maximum-scale=1',
charset: 'utf-8',
meta: [
Expand Down

0 comments on commit d1c4f3c

Please sign in to comment.