From 6e53127feda14271240b069faf3e7c1f2888a992 Mon Sep 17 00:00:00 2001 From: Katharina Will Date: Sun, 21 Apr 2019 20:40:31 +0200 Subject: [PATCH] Added pages for starting and ending a cache --- frontend/src/pages/CacheEnd.vue | 45 +++++++++++++++++++++++++++++++ frontend/src/pages/CacheStart.vue | 38 ++++++++++++++++++++++++++ frontend/src/router/routes.js | 5 ++++ 3 files changed, 88 insertions(+) create mode 100644 frontend/src/pages/CacheEnd.vue create mode 100644 frontend/src/pages/CacheStart.vue diff --git a/frontend/src/pages/CacheEnd.vue b/frontend/src/pages/CacheEnd.vue new file mode 100644 index 0000000..197a0e0 --- /dev/null +++ b/frontend/src/pages/CacheEnd.vue @@ -0,0 +1,45 @@ + + + diff --git a/frontend/src/pages/CacheStart.vue b/frontend/src/pages/CacheStart.vue new file mode 100644 index 0000000..a94c105 --- /dev/null +++ b/frontend/src/pages/CacheStart.vue @@ -0,0 +1,38 @@ + + + diff --git a/frontend/src/router/routes.js b/frontend/src/router/routes.js index 362b097..18a3acf 100644 --- a/frontend/src/router/routes.js +++ b/frontend/src/router/routes.js @@ -50,6 +50,11 @@ const routes = [ component: () => import("layouts/MyLayout.vue"), children: [{ path: "", component: () => import("pages/Login.vue") }] }, + { + path: "/CacheStart/", + component: () => import("layouts/MyLayout.vue"), + children: [{ path: "", component: () => import("pages/CacheStart.vue") }] + }, { path: "/profile/", component: () => import("layouts/MyLayout.vue"),