This commit is contained in:
Baobhan Sith
2025-04-16 17:09:58 +08:00
parent 918b233535
commit 041168194b
4 changed files with 335 additions and 60 deletions
+5
View File
@@ -5,6 +5,8 @@ import { useAuthStore } from './stores/auth.store';
import { storeToRefs } from 'pinia';
// 导入通知显示组件
import UINotificationDisplay from './components/UINotificationDisplay.vue';
// 导入文件编辑器弹窗组件
import FileEditorOverlay from './components/FileEditorOverlay.vue';
const { t } = useI18n();
const authStore = useAuthStore();
@@ -39,6 +41,9 @@ const handleLogout = () => {
<!-- 添加全局通知显示 -->
<UINotificationDisplay />
<!-- 添加全局文件编辑器弹窗 -->
<FileEditorOverlay />
<footer>
<!-- 使用 t 函数获取应用名称 -->
<p>&copy; 2025 {{ t('appName') }}</p>