mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
15 lines
233 B
Vue
15 lines
233 B
Vue
<template>
|
|
<div>
|
|
<ds-heading tag="h1">{{ $t('chat.page.headline') }}</ds-heading>
|
|
<chat />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Chat from '../components/Chat/Chat.vue'
|
|
|
|
export default {
|
|
components: { Chat },
|
|
}
|
|
</script>
|