NuxtN
Nuxt15mo ago
4 replies
TheDreWen

Get SSE data from nuxt

I've written this code to retrieve SSE data, but it doesn't work properly.
// autre
const output = ref<String>("");

onMounted(() => {
    const event = new EventSource(api_url+"projects/"+project_id+"/console?token="+useCookie("X-auth").value)

    event.addEventListener("message", (e) => {
        console.log(e);
        output.value += e.data;
    });
}); 
Was this page helpful?