2023-07-06 13:08:41 +02:00

12 lines
145 B
Vue

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