From 75990a4d960a90d2bb2448246fcc069c061e5377 Mon Sep 17 00:00:00 2001 From: Gurvinder Singh Date: Thu, 3 Dec 2020 12:45:54 +0530 Subject: [PATCH] insight added --- src/components/Insight.vue | 131 +++++++++++++++++++++++++++++++++++++++++++++ src/router/index.js | 6 +++ 2 files changed, 137 insertions(+) create mode 100644 src/components/Insight.vue diff --git a/src/components/Insight.vue b/src/components/Insight.vue new file mode 100644 index 0000000..4c68c67 --- /dev/null +++ b/src/components/Insight.vue @@ -0,0 +1,131 @@ + + + diff --git a/src/router/index.js b/src/router/index.js index 0e94a09..99dad09 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -7,6 +7,7 @@ import Reset from '@/components/Reset' import Profile from '@/components/Profile' import welcome from '@/components/welcome' import Intermediate from '@/components/Intermediate' +import Insight from '@/components/Insight' import router from '../router' Vue.use(Router) @@ -44,6 +45,11 @@ export default new Router({ path: '/profile', name: 'Profile', component: Profile, + }, + { + path: '/insight', + name: 'Insight', + component: Insight, } ], -- 2.0.0