summaryrefslogtreecommitdiffstats
path: root/src/components/group/GroupView.vue
blob: 1608cf4b02cc176b926831df0c53913d342c5477 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
  <div class="group_view">
      Group maker
      <form @submit="send_message">
        <inout type="text" ref="input" />
      </form>
  </div>
</template>

<script>
import ChatService from "@/services/ChatService.js"

export default {
  data() {
    return {
    }
  },

  methods: {
      close() {
        this.$emit('close')
      },
  },

  created() {
    this.$nextTick(function () {
      this.$refs.input.focus()
    })
  }
}
</script>

<style scoped>

.group_view {
    position: absolute;
    width: 30%;
    height: 80%;
    top: 50%;
    left: 50%;
    background-color: #202020;
    padding: 20px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
  }

</style>