2023-07-06 12:32:27 +02:00

12 lines
144 B
Vue

<template>
<chat/>
</template>
<script>
import Chat from '../components/Chat/Chat.vue'
export default {
components: { Chat },
}
</script>