diff --git a/src/router/index.ts b/src/router/index.ts index f18b2db..5404495 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -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 diff --git a/src/views/SettingsView.vue b/src/views/SettingsView.vue new file mode 100644 index 0000000..d2c1487 --- /dev/null +++ b/src/views/SettingsView.vue @@ -0,0 +1,86 @@ + + + \ No newline at end of file