diff --git a/components/app/windows/aboutNewsOrg.vue b/components/app/windows/aboutNewsOrg.vue
index c7213c1..bb4c068 100644
--- a/components/app/windows/aboutNewsOrg.vue
+++ b/components/app/windows/aboutNewsOrg.vue
@@ -6,6 +6,8 @@ import { ScrambleTextPlugin } from "gsap/dist/ScrambleTextPlugin";
gsap.registerPlugin(ScrambleTextPlugin);
const loading = ref(true);
const { t, locale } = useI18n();
+// Great, there are now no errors ig
+const emit = defineEmits(["windowopener", "error", "loadValue"]);
const props = defineProps({
values: {
diff --git a/components/app/windows/chatbot.vue b/components/app/windows/chatbot.vue
index e3c545e..849e38d 100644
--- a/components/app/windows/chatbot.vue
+++ b/components/app/windows/chatbot.vue
@@ -7,6 +7,11 @@ const cookieChatId = cookie.value;
const chatId = ref();
const inputMessage = ref();
const messages = ref([]);
+// Great, there are now no errors ig
+const emit = defineEmits(["windowopener", "error", "loadValue"]);
+const props = defineProps<{
+ values?: string;
+}>();
onMounted(async () => {
console.log(cookieChatId);
if (cookieChatId) {
diff --git a/components/app/windows/error404.vue b/components/app/windows/error404.vue
index 6c586c5..7f252fc 100644
--- a/components/app/windows/error404.vue
+++ b/components/app/windows/error404.vue
@@ -1,3 +1,10 @@
+
+// Great, there are now no errors ig
+const emit = defineEmits(["windowopener", "error", "loadValue"]);
+const props = defineProps<{
+ values?: string;
+}>();
import DraggableWindow from "~/components/DraggableWindow.vue";
const ffeed = ref();
const ass = ["健康2.0", "中天", "TVBS", "香港01", "ETtoday"];
diff --git a/components/app/windows/login.vue b/components/app/windows/login.vue
index 6ddf177..0d28a56 100644
--- a/components/app/windows/login.vue
+++ b/components/app/windows/login.vue
@@ -1,4 +1,6 @@
+
-