Lookmaxing
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m54s

This commit is contained in:
2026-03-05 20:32:14 +00:00
parent 9dc9a3a063
commit 3f39f6327c
6 changed files with 24 additions and 10 deletions

View File

@@ -2,6 +2,7 @@
import { ref, computed, onMounted, onUnmounted } from "vue";
import Button from "@/components/input/Button.vue";
import { useMessagesStore } from "@/stores/messages";
import Header from "@/components/text/Header.vue";
const messagesStore = useMessagesStore();
const messages = computed(() => messagesStore.messages);
@@ -24,6 +25,7 @@ onUnmounted(() => {
<template>
<div class="flex flex-col">
<Header>Chat</Header>
<div class="flex flex-col flex-1 overflow-x-scroll">
<p v-for="message in messages" :key="message.id">
{{ message.text }}