clean chat page

This commit is contained in:
Ulf Gebhardt 2023-07-06 12:32:27 +02:00
parent 38d555bdf8
commit 2630862f3f
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

View File

@ -1,14 +1,11 @@
<template>
<div>
<chat/>
</div>
<chat/>
</template>
<script>
import Chat from '../components/Chat/Chat.vue'
import BaseButton from '../components/_new/generic/BaseButton/BaseButton.vue'
export default {
components: { Chat, BaseButton },
components: { Chat },
}
</script>