diff --git a/packages/frontend/src/App.vue b/packages/frontend/src/App.vue index a1876e9..11b9780 100644 --- a/packages/frontend/src/App.vue +++ b/packages/frontend/src/App.vue @@ -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 = () => { + + +