Work on room info and start on profile view

This commit is contained in:
N-Pex 2021-01-20 14:44:10 +01:00
parent 6e0e1dd31c
commit 19e8b64e7b
8 changed files with 403 additions and 87 deletions

View file

@ -4,6 +4,7 @@ import VueRouter from 'vue-router'
import Chat from '../components/Chat.vue'
import Join from '../components/Join.vue'
import Login from '../components/Login.vue'
import Profile from '../components/Profile.vue'
import util from '../plugins/utils'
Vue.use(VueRouter)
@ -25,6 +26,11 @@ const routes = [
component: () => import('../components/RoomInfo.vue'),
props: true,
},
{
path: '/profile',
name: 'Profile',
component: Profile
},
{
path: '/login',
name: 'Login',