This commit is contained in:
2026-01-05 00:03:26 +01:00
parent 1a4b706702
commit 5ada657ce7
11 changed files with 218 additions and 111 deletions

View File

@@ -1,5 +1,6 @@
<template>
<h1>Oxspeak</h1>
<ws />
<server_list />
<category_list />
@@ -11,6 +12,7 @@
import Server_list from "@/components/server/server_list.vue";
import Category_list from "@/components/category/category_list.vue";
import Channel_list from "@/components/channel/channel_list.vue";
import Ws from "@/components/ws.vue";
</script>
<style scoped></style>

View File

@@ -0,0 +1,17 @@
<script setup>
import {onMounted, ref} from "vue";
const messages = ref([])
onMounted(() => {
let ws = new WebSocket("ws://localhost:7000/handler/ws/");
})
</script>
<template>
<p></p>
</template>
<style scoped>
</style>