diff options
author | HampusM <hampus@hampusmat.com> | 2021-06-11 22:18:45 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-06-11 22:18:45 +0200 |
commit | 88dca239e50d51acb5e12174c6bd0df8c4bc3b7b (patch) | |
tree | 4233094a0f83eee3f98033957b7d0beac35b2441 /packages/client/src/router | |
parent | b2e0d3154336946336edee4e32b57a467e255050 (diff) |
Implemented title and favicon stuff
Diffstat (limited to 'packages/client/src/router')
-rw-r--r-- | packages/client/src/router/index.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/client/src/router/index.js b/packages/client/src/router/index.js index a6db1e1..ed53590 100644 --- a/packages/client/src/router/index.js +++ b/packages/client/src/router/index.js @@ -15,12 +15,12 @@ const routes = [ children: [ { path: "about", - name: "Repository About", + name: "About", component: () => import("../views/RepositoryAbout") }, { path: "log", - name: "Repository Log", + name: "Log", component: () => import("../views/RepositoryLog") }, { @@ -31,7 +31,7 @@ const routes = [ }, { path: "tree/:path*", - name: "Tree Entry", + name: "Tree", component: () => import("../views/RepositoryTree"), props: route => ({ pathArr: route.params.path ? route.params.path : [] }) }, |