Components
Nuxt CookieFirst provides a few components to make life easier for you. Through the power of nuxt, they are already auto-imported for you and ready to use.
<CookieFirstPolicy />
Renders your provided Cookie Policy. You can find the Cookie Policy in your CookieFirst dashboard.
<template>
  <CookieFirstPolicy/>
</template>
<!-- with copyright slot /-->
<template>
  <CookieFirstPolicy>
    <template #copyright>
      Your custom copyright from CookieFirst
    </template>
  </CookieFirstPolicy>
</template>
<CookieFirstTable />
A dynamic table / listing of all cookies used on your site.
<template>
  <CookieFirstTable/>
</template>
<!-- with copyright slots -->
<template>
  <CookieFirstTable>
    <template #copyright>
      Your custom copyright from CookieFirst
    </template>
  </CookieFirstTable>
</template>
Table of Contents