diff --git a/src/App.vue b/src/App.vue
index 641ac741..4df9d9cb 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,67 @@
diff --git a/src/layouts/components/DefaultLayoutWithVerticalNav.vue b/src/layouts/components/DefaultLayoutWithVerticalNav.vue
index 395b05e8..fcbe1088 100644
--- a/src/layouts/components/DefaultLayoutWithVerticalNav.vue
+++ b/src/layouts/components/DefaultLayoutWithVerticalNav.vue
@@ -9,31 +9,6 @@ import NavbarThemeSwitcher from "@/layouts/components/NavbarThemeSwitcher.vue";
import SearchBar from "@/layouts/components/SearchBar.vue";
import ShortcutBar from "@/layouts/components/ShortcutBar.vue";
import UserProfile from "@/layouts/components/UserProfile.vue";
-import store from "@/store";
-import { useToast } from "vue-toast-notification";
-
-// 提示框
-const $toast = useToast();
-
-// 消息SSE
-onMounted(() => {
- const token = store.state.auth.token;
- if (token) {
- const eventSource = new EventSource(
- `${import.meta.env.VITE_API_BASE_URL}system/message?token=${token}`
- );
- eventSource.addEventListener("message", (event) => {
- const message = event.data;
- if (message) {
- $toast.info(message);
- }
- });
-
- onBeforeUnmount(() => {
- eventSource.close();
- });
- }
-});
diff --git a/src/layouts/components/UserProfile.vue b/src/layouts/components/UserProfile.vue
index e217320a..9f216578 100644
--- a/src/layouts/components/UserProfile.vue
+++ b/src/layouts/components/UserProfile.vue
@@ -1,35 +1,10 @@
-
+