mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2026-02-06 09:56:03 +00:00
12 lines
144 B
Vue
12 lines
144 B
Vue
<template>
|
|
<chat/>
|
|
</template>
|
|
|
|
<script>
|
|
import Chat from '../components/Chat/Chat.vue'
|
|
|
|
export default {
|
|
components: { Chat },
|
|
}
|
|
</script>
|