Dialogs and Vuetify styling changes
This commit is contained in:
parent
2ba0d57aa8
commit
a97211afdf
45 changed files with 320 additions and 346 deletions
|
|
@ -11,6 +11,7 @@ import CreateFileDrop from '../components/CreateFileDrop.vue'
|
|||
import User from '../models/user'
|
||||
import util from '../plugins/utils'
|
||||
import { createRouter, createWebHashHistory } from 'vue-router'
|
||||
import { defineAsyncComponent } from 'vue'
|
||||
|
||||
const routes = [
|
||||
{
|
||||
|
|
@ -30,7 +31,7 @@ const routes = [
|
|||
{
|
||||
path: '/info',
|
||||
name: 'RoomInfo',
|
||||
component: () => import('../components/RoomInfo.vue'),
|
||||
component: defineAsyncComponent(() => import('../components/RoomInfo.vue')),
|
||||
props: true,
|
||||
meta: {
|
||||
title: 'Info',
|
||||
|
|
@ -94,7 +95,7 @@ const routes = [
|
|||
{
|
||||
path: '/invite/:roomId?',
|
||||
name: 'Invite',
|
||||
component: () => import('../components/Invite.vue'),
|
||||
component: defineAsyncComponent(() => import('../components/Invite.vue')),
|
||||
meta: {
|
||||
title: 'Add Friends'
|
||||
}
|
||||
|
|
@ -102,7 +103,7 @@ const routes = [
|
|||
{
|
||||
path: '/goodbye',
|
||||
name: 'Goodbye',
|
||||
component: () => import('../components/QuoteView.vue'),
|
||||
component: defineAsyncComponent(() => import('../components/QuoteView.vue')),
|
||||
props: true
|
||||
}
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue