2024-09-16 15:59:46 +00:00
|
|
|
<script lang="ts" setup>
|
2023-03-03 15:54:28 +00:00
|
|
|
import { ref, computed } from 'vue';
|
2024-04-23 17:36:45 +00:00
|
|
|
import { StyleService } from '@/Stores/style.service';
|
2023-03-03 15:54:28 +00:00
|
|
|
|
2024-09-16 15:59:46 +00:00
|
|
|
// import {
|
|
|
|
// mdiContrastCircle,
|
|
|
|
// mdiInformation,
|
|
|
|
// mdiCheckCircle,
|
|
|
|
// mdiAlert,
|
|
|
|
// mdiAlertCircle,
|
|
|
|
// mdiOpenInNew,
|
|
|
|
// mdiClose,
|
|
|
|
// mdiReload,
|
|
|
|
// mdiTrendingUp,
|
|
|
|
// } from '@mdi/js';
|
2023-03-03 15:54:28 +00:00
|
|
|
import SectionMain from '@/Components/SectionMain.vue';
|
|
|
|
import CardBox from '@/Components/CardBox.vue';
|
|
|
|
// import BaseButtons from '@/Components/BaseButtons.vue';
|
|
|
|
import BaseButton from '@/Components/BaseButton.vue';
|
|
|
|
// import NotificationBar from "@/components/NotificationBar.vue";
|
|
|
|
// import BaseDivider from "@/components/BaseDivider.vue";
|
|
|
|
// import CardBoxModal from "@/components/CardBoxModal.vue";
|
|
|
|
import SectionTitle from "@/Components/SectionTitle.vue";
|
|
|
|
// import FormField from "@/components/FormField.vue";
|
|
|
|
// import FormCheckRadioGroup from "@/components/FormCheckRadioGroup.vue";
|
|
|
|
import LayoutAuthenticated from "@/Layouts/LayoutAuthenticated.vue";
|
|
|
|
// import SectionTitleLineWithButton from "@/components/SectionTitleLineWithButton.vue";
|
|
|
|
// import CardBoxComponentEmpty from "@/components/CardBoxComponentEmpty.vue";
|
|
|
|
// import CardBoxComponentTitle from "@/components/CardBoxComponentTitle.vue";
|
|
|
|
// import PillTag from "@/components/PillTag.vue";
|
2024-09-16 15:59:46 +00:00
|
|
|
import BackgroundJob from '@/apps/settings/basic_settings/BackgroundJob.vue';
|
|
|
|
import MailSettings from '@/apps/settings/basic_settings/MailSettings.vue';
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
// const modalOneActive = ref(false);
|
|
|
|
// const modalTwoActive = ref(false);
|
|
|
|
// const modalThreeActive = ref(false);
|
|
|
|
// const notificationSettingsModel = ref([]);
|
|
|
|
|
2024-09-16 15:59:46 +00:00
|
|
|
|
2023-03-03 15:54:28 +00:00
|
|
|
const styleService = StyleService();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<LayoutAuthenticated>
|
2024-09-16 15:59:46 +00:00
|
|
|
<!-- <SectionTitle first>Dark mode</SectionTitle> -->
|
|
|
|
<!--
|
2023-03-03 15:54:28 +00:00
|
|
|
|
|
|
|
<SectionMain>
|
|
|
|
<CardBox class="md:w-7/12 lg:w-5/12 xl:w-4/12 shadow-2xl md:mx-auto">
|
|
|
|
<div class="text-center py-24 lg:py-12 text-gray-500 dark:text-slate-400">
|
|
|
|
<BaseButton label="Toggle" color="contrast" @click="styleService.setDarkMode()" />
|
|
|
|
</div>
|
|
|
|
</CardBox>
|
2024-09-16 15:59:46 +00:00
|
|
|
</SectionMain> -->
|
|
|
|
<BackgroundJob></BackgroundJob>
|
|
|
|
<MailSettings></MailSettings>
|
|
|
|
|
2023-03-03 15:54:28 +00:00
|
|
|
</LayoutAuthenticated>
|
|
|
|
</template>
|