akkoma-fe/src/components/chat_panel/chat_panel.js

22 lines
372 B
JavaScript
Raw Normal View History

2018-01-26 14:11:34 +00:00
const chatPanel = {
2017-12-05 10:02:41 +00:00
data () {
return {
currentMessage: '',
channel: null
}
},
2017-12-05 10:47:10 +00:00
computed: {
messages () {
return this.$store.state.chat.messages
}
2017-12-05 10:02:41 +00:00
},
methods: {
2017-12-05 10:49:40 +00:00
submit (message) {
2017-12-05 10:47:10 +00:00
this.$store.state.chat.channel.push('new_msg', {text: message}, 10000)
2017-12-05 10:49:40 +00:00
this.currentMessage = ''
2017-12-05 10:02:41 +00:00
}
}
}
2018-01-26 14:11:34 +00:00
export default chatPanel