PageMeta

PageMetaコンポーネントを利用して、タイトルやサイトの概要、Open Graph Protocolなどをページに追加します。

Basic Usage

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

Localization

vue
<template>
 <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>
</template>

See Also