comparison client/src/components/toolbar/Toolbar.vue @ 5036:8f421cd3c746 time-sliding

client: Implemented first version of time-sliding
author Fadi Abbud <fadi.abbud@intevation.de>
date Thu, 27 Feb 2020 09:18:17 +0100
parents 869505c5087b
children 066b76ef5e6a
comparison
equal deleted inserted replaced
4893:b65898de11ad 5036:8f421cd3c746
12 <Gauges /> 12 <Gauges />
13 <AvailableFairwayDepth /> 13 <AvailableFairwayDepth />
14 <Linetool /> 14 <Linetool />
15 <Polygontool /> 15 <Polygontool />
16 <Pdftool /> 16 <Pdftool />
17 <TimeSlider />
17 </div> 18 </div>
18 <div 19 <div
19 @click="$store.commit('application/expandToolbar', !expandToolbar)" 20 @click="$store.commit('application/expandToolbar', !expandToolbar)"
20 class="toolbar-button toolbar-toggle rounded-bottom bg-info text-white" 21 class="toolbar-button toolbar-toggle rounded-bottom bg-info text-white"
21 > 22 >
126 Linetool: () => import("./Linetool"), 127 Linetool: () => import("./Linetool"),
127 Polygontool: () => import("./Polygontool"), 128 Polygontool: () => import("./Polygontool"),
128 Profiles: () => import("./Profiles"), 129 Profiles: () => import("./Profiles"),
129 Gauges: () => import("./Gauges"), 130 Gauges: () => import("./Gauges"),
130 Pdftool: () => import("./Pdftool"), 131 Pdftool: () => import("./Pdftool"),
131 AvailableFairwayDepth: () => import("./AvailableFairwayDepth") 132 AvailableFairwayDepth: () => import("./AvailableFairwayDepth"),
133 TimeSlider: () => import("./TimeSlider")
132 }, 134 },
133 computed: { 135 computed: {
134 ...mapState("application", ["expandToolbar"]) 136 ...mapState("application", ["expandToolbar"])
135 } 137 }
136 }; 138 };