From 0501a7ebbb680efb6411431368ee88c49725e491 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Sun, 17 Nov 2019 00:10:58 +0100 Subject: [PATCH] Chat --- frontend/components/Styleguide.vue | 18 ++- frontend/components/chat/Chat.vue | 149 +++++++++++++++++++++++++ frontend/components/chat/ChatInput.vue | 33 ++++++ frontend/components/chat/Name.vue | 41 +++++++ 4 files changed, 235 insertions(+), 6 deletions(-) create mode 100644 frontend/components/chat/Chat.vue create mode 100644 frontend/components/chat/ChatInput.vue create mode 100644 frontend/components/chat/Name.vue diff --git a/frontend/components/Styleguide.vue b/frontend/components/Styleguide.vue index 654f058b..a84ab13f 100644 --- a/frontend/components/Styleguide.vue +++ b/frontend/components/Styleguide.vue @@ -2,8 +2,12 @@

Styleguide

-

Playlist-element

- +

Chat

+ +
+
+

Playlist-element

+
@@ -11,12 +15,14 @@ diff --git a/frontend/components/chat/Chat.vue b/frontend/components/chat/Chat.vue new file mode 100644 index 00000000..7264e73b --- /dev/null +++ b/frontend/components/chat/Chat.vue @@ -0,0 +1,149 @@ + + + + + \ No newline at end of file diff --git a/frontend/components/chat/ChatInput.vue b/frontend/components/chat/ChatInput.vue new file mode 100644 index 00000000..7e460553 --- /dev/null +++ b/frontend/components/chat/ChatInput.vue @@ -0,0 +1,33 @@ + + + + + \ No newline at end of file diff --git a/frontend/components/chat/Name.vue b/frontend/components/chat/Name.vue new file mode 100644 index 00000000..26bcfec8 --- /dev/null +++ b/frontend/components/chat/Name.vue @@ -0,0 +1,41 @@ + + + + + \ No newline at end of file