Create following page displaying all accounts you're following #35 and fix follow bug #68

This commit is contained in:
dragongoose
2023-11-26 20:50:38 -05:00
parent 5bc354aae5
commit 44c5caf00c
5 changed files with 108 additions and 1 deletions

View File

@ -8,6 +8,7 @@ const SearchPageView = () => import('../views/SearchPageView.vue')
const VodView = () => import('../views/VodView.vue')
const SettingsView = () => import('../views/SettingsView.vue')
const ClipView = () => import('../views/ClipView.vue')
const FollowingView = () => import('../views/FollowingView.vue')
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
@ -33,6 +34,10 @@ const router = createRouter({
name: 'about',
component: PrivacyPageView
},
{
path: "/following",
component: FollowingView
},
{
path: '/:username',
component: UserView