Add settings page

This commit is contained in:
dragongoose
2023-08-16 13:04:24 -04:00
parent 6c2614eb0b
commit b405090f54
2 changed files with 91 additions and 0 deletions

View File

@ -6,6 +6,7 @@ const HomepageView = () => import('../views/HomepageView.vue')
const CategoryView = () => import('../views/CategoryView.vue')
const SearchPageView = () => import('../views/SearchPageView.vue')
const VodView = () => import('../views/VodView.vue')
const SettingsView = () => import('../views/SettingsView.vue')
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@ -35,6 +36,10 @@ const router = createRouter({
path: '/:username',
component: UserView
},
{
path: '/settings',
component: SettingsView
},
{
path: '/videos/:vodID',
component: VodView