PageMeta

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

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>

See Also