Previously it almost, but didn't quite work. Now it actually works, but the stack traces are minified.
20 lines
435 B
Vue
20 lines
435 B
Vue
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onMounted } from "vue";
|
|
import { apiClient } from "@/client";
|
|
import router from "@/route/config";
|
|
|
|
import { SSEManager, type SSEMessageResource } from "@/SSEManager";
|
|
|
|
onMounted(() => {
|
|
SSEManager.connect("/api/events");
|
|
SSEManager.subscribe((msg: SSEMessageResource) => {
|
|
if (msg.type != "heartbeat") {
|
|
console.log("SSE", msg);
|
|
}
|
|
});
|
|
});
|
|
</script>
|