From a5efec89f234154f8cbb791a437bdafa183e5326 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 30 Mar 2024 23:21:22 +0800 Subject: [PATCH] :sparkles: Chat message send and read history --- index.html | 28 ++++++++----- src/components/chat/ChatEditor.vue | 62 +++++++++++++++++++++++++++++ src/components/chat/ChatList.vue | 7 ++-- src/components/chat/ChatMessage.vue | 4 +- src/stores/channels.ts | 35 +++++++++++++++- src/stores/userinfo.ts | 2 +- src/views/chat/page.vue | 39 +++++++++--------- 7 files changed, 137 insertions(+), 40 deletions(-) create mode 100644 src/components/chat/ChatEditor.vue diff --git a/index.html b/index.html index 11f10f6..3ed2e66 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,20 @@ - - - - - - Solian - - -
- - + + + + + + Solian + + + + +
+ + diff --git a/src/components/chat/ChatEditor.vue b/src/components/chat/ChatEditor.vue new file mode 100644 index 0000000..e3ad940 --- /dev/null +++ b/src/components/chat/ChatEditor.vue @@ -0,0 +1,62 @@ + + + \ No newline at end of file diff --git a/src/components/chat/ChatList.vue b/src/components/chat/ChatList.vue index 381b91b..9465ab5 100644 --- a/src/components/chat/ChatList.vue +++ b/src/components/chat/ChatList.vue @@ -1,8 +1,7 @@