Istruzioni

1. Installare il pacchetto npm con il tuo gestore di pacchetti preferito

# npm
npm install --save @notice-org/vue

# yarn
yarn add @notice-org/vue

# pnpm
pnpm add @notice-org/vue






2. Ora puoi importare e utilizzare il componente Notice ovunque

<script setup>
import { Notice } from '@notice-org/vue'
</script>

<template>
  <Notice pageId="{{{project}}}" />
</template>






3. E puoi aggiungere qualsiasi di questi props

<Notice
  project-id="string" // required
  page="string" // optionnal
  lang="string" // optionnal
  theme="light | dark" // optionnal
  navigation-type="query | memory" // default to memory
/>

// You can also pass children to this component that will act as a loading state
<Notice pageId="...">
  <span>Loading...</span>
</Notice>







Esempio sandbox


Created with Notice