Start working on the content explorer!

This commit is contained in:
PascalMarchesseault
2024-08-10 01:24:36 -04:00
parent 1a1dcbd577
commit 8ecdb27279
3 changed files with 474 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ import CreatorList from '../views/creators/CreatorList.vue'
import CreatorPage from "@/views/creators/CreatorPage.vue";
import ContentPage from "@/views/contents/ContentPage.vue";
import PostContent from "@/views/contents/PostContent.vue";
import Explorer from "@/views/explorer/explorer.vue";
import {useAuthStore} from "@/stores/authStore.js";
const routes = [
@@ -127,6 +128,12 @@ const routes = [
component: Profile,
meta: { requiresAuth: true }
},
{
path: '/explorer',
name: 'explorer',
component: Explorer,
},
]
const router = createRouter({