36 lines
1,010 B
Vue
36 lines
1,010 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
middleware: 'auth',
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
const pwaEnabled = useAppConfig().pwaEnabled
|
|
|
|
useHydratedHead({
|
|
title: () => `${t('settings.notifications.label')} | ${t('nav.settings')}`,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<MainContent back-on-small-screen>
|
|
<template #title>
|
|
<div text-lg font-bold flex items-center gap-2 @click="$scrollToTop">
|
|
<span>{{ isHydrated ? $t('settings.notifications.label') : '' }}</span>
|
|
</div>
|
|
</template>
|
|
|
|
<SettingsItem
|
|
command
|
|
:text="isHydrated ? $t('settings.notifications.notifications.label') : ''"
|
|
to="/settings/notifications/notifications"
|
|
/>
|
|
<SettingsItem
|
|
command
|
|
:disabled="!pwaEnabled"
|
|
:text="isHydrated ? $t('settings.notifications.push_notifications.label') : ''"
|
|
:description="isHydrated ? $t('settings.notifications.push_notifications.description') : ''"
|
|
to="/settings/notifications/push-notifications"
|
|
/>
|
|
</MainContent>
|
|
</template>
|