Add basic "home" screen with room list

This commit is contained in:
N-Pex 2021-02-09 12:37:56 +01:00
parent c489d58a69
commit 9c9619fe1c
5 changed files with 24 additions and 9 deletions

View file

@ -1,6 +1,6 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
//import Home from '../components/Home.vue'
import Home from '../components/Home.vue'
import Chat from '../components/Chat.vue'
import Join from '../components/Join.vue'
import Login from '../components/Login.vue'
@ -13,7 +13,7 @@ const routes = [
{
path: '/',
name: 'Home',
component: Chat
component: Home
},
{
path: '/room/:roomId?',