mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
29 lines
479 B
Vue
29 lines
479 B
Vue
<template>
|
|
<div>
|
|
<ds-heading tag="h1">{{ $t('chat.page.headline') }}</ds-heading>
|
|
<chat />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapMutations } from 'vuex'
|
|
import Chat from '../components/Chat/Chat.vue'
|
|
|
|
export default {
|
|
components: { Chat },
|
|
mounted() {
|
|
this.showChat({ showChat: false, roomID: null })
|
|
},
|
|
data() {
|
|
return {
|
|
// former,
|
|
}
|
|
},
|
|
methods: {
|
|
...mapMutations({
|
|
showChat: 'chat/SET_OPEN_CHAT',
|
|
}),
|
|
},
|
|
}
|
|
</script>
|