You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
matrix-chat/src/views/home.vue

27 lines
427 B
Vue

<template>
<div>
<topBannerHome />
<router-link to="/chat"><room roomName="Test" onlineUsers="5" /></router-link>
</div>
</template>
<script>
import topBannerHome from '@/components/topBannerHome'
import room from '@/components/room'
export default {
name: 'home',
components: {
topBannerHome,
room
},
props:{
roomName: String,
onlineUsers: String
}
}
</script>
<style scoped>
</style>