PageMeta

Use the PageMeta component to add titles, site descriptions, Open Graph Protocol, and more to the page. を Use the Page Meta component to add titles, site descriptions, Open Graph Protocol, and more to the page.

Basic Usage

vue
<template>
 <Head>
  <PageMeta
   title="use-bootstrap"
   description="use-bootstrap is the front-end framework based on Nuxt3 and Bootstrap5."
   image="/img/logo/main1.svg"
  />
 </Head>
 <NuxtLayout>
  Page Contents
 </NuxtLayout>
</template>

Localization

vue
<template>
 <Head>
  <Localization>
   <template #en>
    <PageMeta
     title="Quick start"
     description="use-bootstrap is the front-end framework based on Nuxt3 and Bootstrap5."
    />
   </template>
   <template #ja>
    <PageMeta
     title="はじめる"
     description="use-bootstrap は、Nuxt3 と Bootstrap5 をベースにしたフロントエンド フレームワークです。"
    />
   </template>
  </Localization>
 </Head>
 <NuxtLayout>
  Page Contents
 </NuxtLayout>
</template>

See Also