From a8fa238e683636c94a8ca5d5bd27e92f954286a0 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Thu, 8 Oct 2020 16:38:37 +0200 Subject: [PATCH] Add planner component to site --- lib/www/client/source/src/components/navigation.vue | 1 + lib/www/client/source/src/router/index.js | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/lib/www/client/source/src/components/navigation.vue b/lib/www/client/source/src/components/navigation.vue index 4af78b1..a376831 100644 --- a/lib/www/client/source/src/components/navigation.vue +++ b/lib/www/client/source/src/components/navigation.vue @@ -44,6 +44,7 @@ export default { tabs: [ { href: "summary", text: "Summary" }, { href: "lines", text: "Lines" }, + { href: "plan", text: "Plan" }, { href: "sequences", text: "Sequences" }, { href: "calendar", text: "Calendar" }, { href: "log", text: "Log" }, diff --git a/lib/www/client/source/src/router/index.js b/lib/www/client/source/src/router/index.js index 7bbf77a..8d7255a 100644 --- a/lib/www/client/source/src/router/index.js +++ b/lib/www/client/source/src/router/index.js @@ -5,6 +5,7 @@ import Project from '../views/Project.vue' import ProjectList from '../views/ProjectList.vue' import ProjectSummary from '../views/ProjectSummary.vue' import LineList from '../views/LineList.vue' +import Plan from '../views/Plan.vue' import LineSummary from '../views/LineSummary.vue' import SequenceList from '../views/SequenceList.vue' import SequenceSummary from '../views/SequenceSummary.vue' @@ -78,6 +79,11 @@ Vue.use(VueRouter) name: "LineList", component: LineList }, + { + path: "plan/", + name: "Plan", + component: Plan + }, { path: "lines/:line", name: "Line",