Add settings page
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user