From 3ad2405b77b6ca121a4f5aeaefb8a68da1c2655c Mon Sep 17 00:00:00 2001
From: vekaste <vekaste@stud.ntnu.no>
Date: Wed, 17 Apr 2024 08:54:27 +0200
Subject: [PATCH] feat: added news route

---
 src/router/index.ts | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/router/index.ts b/src/router/index.ts
index b5719b3..83cc091 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -19,6 +19,11 @@ const routes = [
         name: 'not-found',
         component: () => import('@/views/NotFoundView.vue'),
       },
+      {
+        path: '/news',
+        name: 'news',
+        component: () => import('@/views/NewsView.vue'),
+      },
     ]
   },
   {
-- 
GitLab