新增邮件发送和管理员功能

This commit is contained in:
eoao
2025-05-29 17:38:50 +08:00
parent de742d31e7
commit 2341d14b2d
364 changed files with 24202 additions and 1079 deletions

View File

@@ -1,31 +1,10 @@
<template>
<router-view/>
<div class="loading" v-if="uiStore.init">
<loading/>
</div>
</template>
<script setup>
import loading from "@/components/loading/index.vue";
import {useUiStore} from "@/store/ui.js";
import {useSettingStore} from "@/store/setting.js";
import {watch} from "vue";
const settingStore = useSettingStore();
const uiStore = useUiStore();
watch(() => settingStore.settings.title,
(title) => document.title = title,
{immediate: true}
)
</script>
<style>
.loading {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
</style>