mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-05 08:29:57 +00:00
36 lines
974 B
Vue
36 lines
974 B
Vue
|
<script setup lang="ts">
|
||
|
definePageMeta({
|
||
|
middleware: 'auth',
|
||
|
})
|
||
|
|
||
|
const { t } = useI18n()
|
||
|
const pwaEnabled = useRuntimeConfig().public.pwaEnabled
|
||
|
|
||
|
useHeadFixed({
|
||
|
title: () => `${t('settings.notifications.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>{{ $t('settings.notifications.notifications.label') }}</span>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<SettingsItem
|
||
|
command
|
||
|
:text="$t('settings.notifications.notifications.label')"
|
||
|
to="/settings/notifications/notifications"
|
||
|
/>
|
||
|
<SettingsItem
|
||
|
command
|
||
|
:disabled="!pwaEnabled"
|
||
|
:text="$t('settings.notifications.push_notifications.label')"
|
||
|
:description="$t('settings.notifications.push_notifications.description')"
|
||
|
to="/settings/notifications/push-notifications"
|
||
|
/>
|
||
|
</MainContent>
|
||
|
</template>
|