mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
12 lines
145 B
Vue
12 lines
145 B
Vue
<template>
|
|
<chat />
|
|
</template>
|
|
|
|
<script>
|
|
import Chat from '../components/Chat/Chat.vue'
|
|
|
|
export default {
|
|
components: { Chat },
|
|
}
|
|
</script>
|