Work on room info and start on profile view
This commit is contained in:
parent
6e0e1dd31c
commit
19e8b64e7b
8 changed files with 403 additions and 87 deletions
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue