diff --git a/src/App.vue b/src/App.vue index 05304f0..d87237e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -23,7 +23,7 @@ const activePath = computed(() => route.path); // iframe pages don't show footer; they fill the viewport const isIframePage = computed(() => - ['/doc', '/map', '/photo'].includes(route.path) + ['/doc', '/map', '/status', '/photo'].includes(route.path) ); diff --git a/src/router.js b/src/router.js index ed44662..0a3d482 100644 --- a/src/router.js +++ b/src/router.js @@ -58,6 +58,13 @@ export const routes = [ component: () => import('./pages/DocPage.vue'), meta: { seo: routeSeo.doc }, }, + { + path: '/status', + alias: ['/status.html'], + name: 'status', + component: () => import('./pages/StatusPage.vue'), + meta: { seo: routeSeo.status }, + }, { path: '/map', alias: ['/map.html'],