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>

See Also