Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 2m6s
23 lines
395 B
Vue
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> |