diff --git a/client/src/components/MainNavigationBar.vue b/client/src/components/MainNavigationBar.vue index b4400703..00df77bb 100644 --- a/client/src/components/MainNavigationBar.vue +++ b/client/src/components/MainNavigationBar.vue @@ -162,7 +162,7 @@ const profileDropdownData = [ Shop diff --git a/client/src/router/index.ts b/client/src/router/index.ts index af8feacc..204beaf5 100644 --- a/client/src/router/index.ts +++ b/client/src/router/index.ts @@ -1,6 +1,7 @@ import { createRouter, createWebHistory } from 'vue-router' import CockpitView from '@/views/CockpitView.vue' import LoginView from '@/views/LoginView.vue' +import MediaMainView from '@/views/MediaMainView.vue' import { redirectToLoginIfRequired, updateLoggedIn } from '@/router/guards' import { useAppStore } from '@/stores/app' @@ -27,6 +28,12 @@ const router = createRouter({ { path: '/mediacenter', component: () => import('@/views/MediaView.vue'), + children: [ + { + path: 'overview', + component: () => import('@/views/MediaMainView.vue') + } + ] }, { path: '/messages', diff --git a/client/src/views/MediaMainView.vue b/client/src/views/MediaMainView.vue new file mode 100644 index 00000000..e9b89171 --- /dev/null +++ b/client/src/views/MediaMainView.vue @@ -0,0 +1,18 @@ + + + + + diff --git a/client/src/views/MediaView.vue b/client/src/views/MediaView.vue index 6439a274..b8e42f67 100644 --- a/client/src/views/MediaView.vue +++ b/client/src/views/MediaView.vue @@ -6,9 +6,20 @@ log.debug('ShopView created');