diff client/src/components/Contextbox.vue @ 3298:ec27ee21f7bc

client: define sections: added route and support in context box
author Markus Kottlaender <markus@intevation.de>
date Thu, 16 May 2019 16:33:29 +0200
parents d23532a4d0c3
children 982816fca381
line wrap: on
line diff
--- a/client/src/components/Contextbox.vue	Thu May 16 16:27:28 2019 +0200
+++ b/client/src/components/Contextbox.vue	Thu May 16 16:33:29 2019 +0200
@@ -3,6 +3,7 @@
     <Bottlenecks v-if="contextBoxContent === 'bottlenecks'" />
     <Staging v-if="contextBoxContent === 'staging'" />
     <Stretches v-if="contextBoxContent === 'stretches'" />
+    <Sections v-if="contextBoxContent === 'sections'" />
     <ImportOverview v-if="contextBoxContent === 'importoverview'" />
     <ImportConfiguration v-if="contextBoxContent === 'importconfiguration'" />
   </div>
@@ -29,6 +30,7 @@
   components: {
     Bottlenecks: () => import("@/components/Bottlenecks"),
     Stretches: () => import("@/components/stretches/Stretches"),
+    Sections: () => import("@/components/sections/Sections"),
     ImportOverview: () => import("@/components/importoverview/ImportOverview"),
     ImportConfiguration: () => import("@/components/importconfiguration/Import")
   },