summaryrefslogtreecommitdiffstats
path: root/src/components/group/GroupView.vue
diff options
context:
space:
mode:
authorjdlugosz963 <jdlugosz963@gmail.com>2021-12-15 14:53:33 +0100
committerjdlugosz963 <jdlugosz963@gmail.com>2021-12-15 14:53:33 +0100
commit49379b11b8dfa179fd81398e8b4b5423c7275038 (patch)
tree21e4ab9835a9ff822f2c89227da2ef389007179d /src/components/group/GroupView.vue
parentfb8cd8aa895d2b7ee609bb84f23ab52c37d4a01f (diff)
downloadlom_frontend-49379b11b8dfa179fd81398e8b4b5423c7275038.tar.gz
lom_frontend-49379b11b8dfa179fd81398e8b4b5423c7275038.zip
add Groups View and message fetcher
Diffstat (limited to 'src/components/group/GroupView.vue')
-rw-r--r--src/components/group/GroupView.vue47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/components/group/GroupView.vue b/src/components/group/GroupView.vue
deleted file mode 100644
index 1608cf4..0000000
--- a/src/components/group/GroupView.vue
+++ /dev/null
@@ -1,47 +0,0 @@
1<template>
2 <div class="group_view">
3 Group maker
4 <form @submit="send_message">
5 <inout type="text" ref="input" />
6 </form>
7 </div>
8</template>
9
10<script>
11import ChatService from "@/services/ChatService.js"
12
13export default {
14 data() {
15 return {
16 }
17 },
18
19 methods: {
20 close() {
21 this.$emit('close')
22 },
23 },
24
25 created() {
26 this.$nextTick(function () {
27 this.$refs.input.focus()
28 })
29 }
30}
31</script>
32
33<style scoped>
34
35.group_view {
36 position: absolute;
37 width: 30%;
38 height: 80%;
39 top: 50%;
40 left: 50%;
41 background-color: #202020;
42 padding: 20px;
43 border-radius: 10px;
44 transform: translate(-50%, -50%);
45 }
46
47</style>