aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/router.ts
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2019-01-31 22:59:18 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2019-01-31 22:59:18 +0100
commitff8b915260e90084179dcb1d8b0b7b5f62b98470 (patch)
tree612de8f038d3bfb4d1a7fe0d4f41669420fa0f7e /kamon-status/src/router.ts
parent1db3f5c9c984dabbad7400c0c092942ff04580c0 (diff)
downloadKamon-ff8b915260e90084179dcb1d8b0b7b5f62b98470.tar.gz
Kamon-ff8b915260e90084179dcb1d8b0b7b5f62b98470.tar.bz2
Kamon-ff8b915260e90084179dcb1d8b0b7b5f62b98470.zip
show number of modules and metrics on the status page
Diffstat (limited to 'kamon-status/src/router.ts')
-rw-r--r--kamon-status/src/router.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/kamon-status/src/router.ts b/kamon-status/src/router.ts
index e540d9a4..03d07eae 100644
--- a/kamon-status/src/router.ts
+++ b/kamon-status/src/router.ts
@@ -1,6 +1,6 @@
import Vue from 'vue';
import Router from 'vue-router';
-import Home from './views/Home.vue';
+import Overview from './views/Overview.vue';
Vue.use(Router);
@@ -8,8 +8,8 @@ export default new Router({
routes: [
{
path: '/',
- name: 'home',
- component: Home,
+ name: 'overview',
+ component: Overview,
},
{
path: '/about',