consent.ts 192 B

123456789
  1. export const useConsent = defineStore('consent-store', {
  2. state: () => ({
  3. 'preferenceGiven': false,
  4. 'analytics': false,
  5. 'ads': false,
  6. }),
  7. persist: true,
  8. })