aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat/chat.js
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2018-01-26 15:11:34 +0100
committerRoger Braun <roger@rogerbraun.net>2018-01-26 15:11:34 +0100
commit92289e545a62bd28ea336c5d712a05445e0e20ab (patch)
treeeec01172230ef116c25f4f68c104da568c484820 /src/components/chat/chat.js
parent1c067f8562a873247f8d856f61d8f1437876c077 (diff)
Move chat to sidebar.
Diffstat (limited to 'src/components/chat/chat.js')
-rw-r--r--src/components/chat/chat.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/components/chat/chat.js b/src/components/chat/chat.js
deleted file mode 100644
index ef326d4a..00000000
--- a/src/components/chat/chat.js
+++ /dev/null
@@ -1,21 +0,0 @@
-const chat = {
- data () {
- return {
- currentMessage: '',
- channel: null
- }
- },
- computed: {
- messages () {
- return this.$store.state.chat.messages
- }
- },
- methods: {
- submit (message) {
- this.$store.state.chat.channel.push('new_msg', {text: message}, 10000)
- this.currentMessage = ''
- }
- }
-}
-
-export default chat