From 4cd9d45d9e2ad3d485f09950a538789fecff48e8 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Fri, 30 Nov 2018 08:42:04 +0100 Subject: [PATCH] Feat(Router): create all pages --- src/App.vue | 12 ------------ src/components/navbar.vue | 18 ++++++++++++++---- src/router.js | 12 ++++++++++-- src/views/analysis.vue | 5 +++++ 4 files changed, 29 insertions(+), 18 deletions(-) create mode 100644 src/views/analysis.vue diff --git a/src/App.vue b/src/App.vue index ae69429..c11d6a8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -19,16 +19,4 @@ export default { #app { text-align: center; } -#nav { - padding: 30px; -} - -#nav a { - font-weight: bold; - color: #2c3e50; -} - -#nav a.router-link-exact-active { - color: #42b983; -} diff --git a/src/components/navbar.vue b/src/components/navbar.vue index 1003615..3a8f95b 100644 --- a/src/components/navbar.vue +++ b/src/components/navbar.vue @@ -1,15 +1,14 @@