From eba7e4b0b7fcc41876eeec2eff1b218b2a33a1a3 Mon Sep 17 00:00:00 2001 From: Lucas Schumacher Date: Wed, 1 Nov 2023 13:51:39 -0400 Subject: [PATCH] Add chat component --- client/src/App.vue | 4 +- client/src/components/Chat.vue | 70 ++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 client/src/components/Chat.vue diff --git a/client/src/App.vue b/client/src/App.vue index 57cdccb..2bf3a18 100644 --- a/client/src/App.vue +++ b/client/src/App.vue @@ -5,12 +5,14 @@ import Signup from './components/Signup.vue' import Login from './components/Login.vue' import Clicker from './components/Clicker.vue' import ThemeToggle from './components/ThemeToggle.vue' +import Chat from './components/Chat.vue' const routes = { - '/': Clicker, + '/': Chat, '/signup': Signup, '/login': Login, '/button': Clicker, + '/chat': Chat, } const currentPath = ref(window.location.hash) diff --git a/client/src/components/Chat.vue b/client/src/components/Chat.vue new file mode 100644 index 0000000..6435d70 --- /dev/null +++ b/client/src/components/Chat.vue @@ -0,0 +1,70 @@ + + + + + +