From e198b1583744f3a4692cf03c0a5e43a70703c62e Mon Sep 17 00:00:00 2001 From: Dario Ernst Date: Fri, 21 Jul 2017 15:16:34 +0200 Subject: [PATCH] Add list-overview files --- client/src/components/List-overview.vue | 43 ++++++++++++++++++++ client/src/components/list-overview/main.vue | 16 ++++++++ client/src/router.js | 7 ++++ 3 files changed, 66 insertions(+) create mode 100644 client/src/components/List-overview.vue create mode 100644 client/src/components/list-overview/main.vue diff --git a/client/src/components/List-overview.vue b/client/src/components/List-overview.vue new file mode 100644 index 0000000..716e9f4 --- /dev/null +++ b/client/src/components/List-overview.vue @@ -0,0 +1,43 @@ + + + + + diff --git a/client/src/components/list-overview/main.vue b/client/src/components/list-overview/main.vue new file mode 100644 index 0000000..d94d392 --- /dev/null +++ b/client/src/components/list-overview/main.vue @@ -0,0 +1,16 @@ + + + + + diff --git a/client/src/router.js b/client/src/router.js index bc407e3..d9a2fd2 100644 --- a/client/src/router.js +++ b/client/src/router.js @@ -17,6 +17,13 @@ export default new VueRouter({ { path: 'login', component: load('index/login') }, { path: 'register', component: load('index/register') } ] + }, + { + path: '/lists', + component: load('Lists-overview'), + children: [ + { path: '', component: load('list-overview/main') } + ] } ] })