From fbe39e278462bc82507572642fe23e60bc48d5fa Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Thu, 27 Jun 2019 17:56:49 +0200 Subject: [PATCH] Add style guide --- client/src/pages/styleguide.vue | 51 +++++++++++++++++++++++++++++++++ client/src/router/index.js | 4 +-- 2 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 client/src/pages/styleguide.vue diff --git a/client/src/pages/styleguide.vue b/client/src/pages/styleguide.vue new file mode 100644 index 00000000..cdef142f --- /dev/null +++ b/client/src/pages/styleguide.vue @@ -0,0 +1,51 @@ + + + diff --git a/client/src/router/index.js b/client/src/router/index.js index a06fc241..d3d3d629 100644 --- a/client/src/router/index.js +++ b/client/src/router/index.js @@ -25,7 +25,7 @@ import Router from 'vue-router' import editProject from '@/pages/editProject' import newProject from '@/pages/newProject' import surveyPage from '@/pages/survey' -// import styleGuidePage from '@/pages/styleguide' +import styleGuidePage from '@/pages/styleguide' import store from '@/store/index'; @@ -92,7 +92,7 @@ const routes = [ component: surveyPage, props: true }, - // {path: '/styleguide', component: styleGuidePage}, + {path: '/styleguide', component: styleGuidePage}, {path: '*', component: p404} ];