Dominik Milacher 79aee40a7a
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 2m6s
Update languages
2025-06-23 21:01:13 +02:00

23 lines
395 B
Vue

<template>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
</template>
<script setup>
const {t, tm, rt} = useVariantData()
const { add } = useToast()
onMounted(() => {
add({
title: t('cookies.title'),
description: t('cookies.description'),
timeout: 8000,
color: 'primary',
icon: 'i-heroicons-shield-check',
ui: {
position: "bottom-center"
}
})
})
</script>