make trending accessible although feed is the default tab

This commit is contained in:
Bnyro
2022-07-20 17:52:25 +02:00
parent 58ce63eca4
commit e8979d0fce
3 changed files with 22 additions and 8 deletions

View File

@@ -3,6 +3,11 @@ import { createRouter, createWebHistory } from "vue-router";
const routes = [
{
path: "/",
name: "Home",
component: () => import("../components/TrendingPage.vue"),
},
{
path: "/trending",
name: "Trending",
component: () => import("../components/TrendingPage.vue"),
},