From 58a5a9af83492c5bbb4fba88b4443f08fa4becfc Mon Sep 17 00:00:00 2001
From: 刘磊 <1161824510@qq.com>
Date: 星期二, 17 十二月 2024 19:53:14 +0800
Subject: [PATCH] 解决冲突

---
 Code Management/WCS/WIDESEAWCS_Client/src/views/Home.vue |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/Code Management/WCS/WIDESEAWCS_Client/src/views/Home.vue b/Code Management/WCS/WIDESEAWCS_Client/src/views/Home.vue
index 820437a..2d83b3c 100644
--- a/Code Management/WCS/WIDESEAWCS_Client/src/views/Home.vue
+++ b/Code Management/WCS/WIDESEAWCS_Client/src/views/Home.vue
@@ -4,12 +4,18 @@
 
 <script>
 import { ref, reactive } from 'vue'
-
+import eventBus from "../uitils/eventBus";
 export default {
   setup() {
     return {
-
     }
+
+    eventBus.on('stackerData', eventData => {
+        console.log(eventData);
+    })
+    eventBus.on('locationData', eventData => {
+        console.log(eventData);
+    })
   }
 }
 </script>

--
Gitblit v1.9.3