summaryrefslogtreecommitdiff
path: root/master/src/router/index.ts
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-05-17 16:05:53 +0200
committerHampusM <hampus@hampusmat.com>2022-05-17 16:05:53 +0200
commit775222b6518324a8cb44a800c256ca98f2a1449b (patch)
tree1cbf28cfacd03c04e0d1ddce225893da054559f2 /master/src/router/index.ts
parent4c40c538af66570cc4a5a0f0b956afa98f9876db (diff)
add master website
Diffstat (limited to 'master/src/router/index.ts')
-rw-r--r--master/src/router/index.ts25
1 files changed, 25 insertions, 0 deletions
diff --git a/master/src/router/index.ts b/master/src/router/index.ts
new file mode 100644
index 0000000..df8090e
--- /dev/null
+++ b/master/src/router/index.ts
@@ -0,0 +1,25 @@
+import { createRouter, createWebHashHistory, RouteRecordRaw } from 'vue-router'
+import HomeView from '../views/HomeView.vue'
+
+const routes: Array<RouteRecordRaw> = [
+ {
+ path: '/',
+ name: 'home',
+ component: HomeView
+ },
+ {
+ path: '/about',
+ name: 'about',
+ // route level code-splitting
+ // this generates a separate chunk (about.[hash].js) for this route
+ // which is lazy-loaded when the route is visited.
+ component: () => import(/* webpackChunkName: "about" */ '../views/AboutView.vue')
+ }
+]
+
+const router = createRouter({
+ history: createWebHashHistory(),
+ routes
+})
+
+export default router