From f0c24e3e3a88f0dd2cb8382f92f2b1dd767116da Mon Sep 17 00:00:00 2001 From: alicestrt Date: Mon, 17 Oct 2022 13:37:52 +0200 Subject: [PATCH] added wells page --- src/components/WellsPage.vue | 103 +++++++++++++++++++++++++++++++++++ src/main.js | 5 +- 2 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 src/components/WellsPage.vue diff --git a/src/components/WellsPage.vue b/src/components/WellsPage.vue new file mode 100644 index 0000000..33615a4 --- /dev/null +++ b/src/components/WellsPage.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/src/main.js b/src/main.js index 8958e6e..fd3a262 100644 --- a/src/main.js +++ b/src/main.js @@ -52,6 +52,7 @@ import ReadingFoodPage from './components/ReadingFoodPage' import Magiun3 from './components/Magiun3' import AmroTimes from './components/AmroTimes' import ATNOFSPage from './components/ATNOFSPage' +import WellsPage from './components/WellsPage' Vue.config.productionTip = false @@ -91,7 +92,9 @@ const router = new VueRouter({ { path: '/readingfood', component: ReadingFoodPage }, { path: '/magiun3', component: Magiun3 }, { path: '/amrotimes', component: AmroTimes }, - { path: '/atnofs', component: ATNOFSPage } + { path: '/atnofs', component: ATNOFSPage }, + { path: '/wells', component: WellsPage } + ] })