From 88e8f22929003c64f10cbb02c56030d4c395c951 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Tue, 7 Dec 2021 01:49:27 -0500 Subject: [PATCH] [+] New home link --- src/App.vue | 10 ++++++++++ src/router/index.ts | 5 +++++ 2 files changed, 15 insertions(+) diff --git a/src/App.vue b/src/App.vue index 6c585f0..1732480 100644 --- a/src/App.vue +++ b/src/App.vue @@ -12,6 +12,9 @@
·
{{ $t('nav.home') }}
·
+ + +
·
@@ -177,6 +180,13 @@ export default class App extends Vue height: 160px z-index: 100 + svg + display: inline-block + height: 1em + transform: rotate(180deg) + * + box-sizing: inherit + // Tablet layout @media screen and (max-width: 800px) #nav #menu diff --git a/src/router/index.ts b/src/router/index.ts index 299f3fe..adb2185 100644 --- a/src/router/index.ts +++ b/src/router/index.ts @@ -7,6 +7,11 @@ const routes: Array = [ name: 'Home', component: Home }, + { + path: '/new-home', + name: 'New Home', + component: import('../views/NewHome.vue') + }, { path: '/about', name: 'About',