summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/router/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/router/index.js b/src/router/index.js
index 6e958342..c3d44390 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -10,7 +10,6 @@ Vue.use(VueRouter);
const routes = [
{
path: '/',
- name: '',
meta: {
requiresAuth: true
},
@@ -18,6 +17,7 @@ const routes = [
children: [
{
path: '',
+ name: 'overview',
component: () => import('@/views/Overview'),
meta: {
title: 'appPageTitle.overview'
@@ -25,6 +25,7 @@ const routes = [
},
{
path: '/health/sensors',
+ name: 'sensors',
component: () => import('@/views/Health/Sensors'),
meta: {
title: 'appPageTitle.sensors'