Setting <head> tags of a Page

You can set <title>, <meta>, and <link> with the useHead composable.

useHead({
  title: 'Home',
  meta: [
    { name: 'description', content: 'A Nuxt Site' }
  ],
  link: [
    { rel: 'stylesheet', href: 'style/url' }
  ]
})