aboutsummaryrefslogtreecommitdiff
path: root/packages/client/src/router/index.js
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2021-07-06 13:07:07 +0200
committerHampusM <hampus@hampusmat.com>2021-07-06 13:07:07 +0200
commit39c38c737114dc7f946b1895b2a4ba27a5546c60 (patch)
tree61344a90155845d08c4811da16e6f90504da2625 /packages/client/src/router/index.js
parent4102adab527ccc4f6d8ac210118dea21177c212d (diff)
Migrated frontend to typescript
Diffstat (limited to 'packages/client/src/router/index.js')
-rw-r--r--packages/client/src/router/index.js54
1 files changed, 0 insertions, 54 deletions
diff --git a/packages/client/src/router/index.js b/packages/client/src/router/index.js
deleted file mode 100644
index b20a473..0000000
--- a/packages/client/src/router/index.js
+++ /dev/null
@@ -1,54 +0,0 @@
-import { createRouter, createWebHashHistory } from "vue-router";
-
-const routes = [
- {
- path: "/",
- name: "Home",
- component: () => import("../views/Home")
- },
- {
- path: "/:repo([a-zA-Z0-9\\.\\-_]+)",
- name: "Repository",
- component: () => import("../views/Repository"),
- props: route => ({ repository: route.params.repo }),
- children: [
- {
- path: "about",
- name: "About",
- component: () => import("../views/RepositoryAbout")
- },
- {
- path: "log",
- name: "Log",
- component: () => import("../views/RepositoryLog")
- },
- {
- path: "log/:commit([a-fA-F0-9]{40}$)",
- name: "Commit",
- component: () => import("../views/RepositoryCommit"),
- props: route => ({ commit: route.params.commit })
- },
- {
- path: "tree/:path*",
- name: "Tree",
- component: () => import("../views/RepositoryTree"),
- props: route => ({ pathArr: route.params.path ? route.params.path : [] })
- }
- /* {
- path: "",
- component: () => import("../views/RepositoryRedirect")
- } */
- ]
- },
- {
- path: "/:PageNotFound(.*)*",
- component: () => import("../views/PageNotFound")
- }
-];
-
-const router = createRouter({
- history: createWebHashHistory(),
- routes
-});
-
-export default router;