comparison client/src/components/map/contextbox/Contextbox.vue @ 1280:f9e4c494e4c5

renamed imports to import soundingresults
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 22 Nov 2018 10:00:22 +0100
parents 8f4bf8576acd
children f1b096e1ee69
comparison
equal deleted inserted replaced
1279:60e15c2d26a2 1280:f9e4c494e4c5
2 <div :class="style"> 2 <div :class="style">
3 <div @click="close" class="ui-element close-contextbox text-muted"> 3 <div @click="close" class="ui-element close-contextbox text-muted">
4 <i class="fa fa-close"></i> 4 <i class="fa fa-close"></i>
5 </div> 5 </div>
6 <Bottlenecks v-if="showInContextBox === 'bottlenecks'"></Bottlenecks> 6 <Bottlenecks v-if="showInContextBox === 'bottlenecks'"></Bottlenecks>
7 <Imports v-if="showInContextBox === 'imports'"></Imports> 7 <Importsounding v-if="showInContextBox === 'imports'"></Importsounding>
8 <Staging v-if="showInContextBox === 'staging'"></Staging> 8 <Staging v-if="showInContextBox === 'staging'"></Staging>
9 </div> 9 </div>
10 </template> 10 </template>
11 11
12 <script> 12 <script>
28 28
29 export default { 29 export default {
30 name: "contextbox", 30 name: "contextbox",
31 components: { 31 components: {
32 Bottlenecks: () => import("./Bottlenecks"), 32 Bottlenecks: () => import("./Bottlenecks"),
33 Imports: () => import("./Imports.vue"), 33 Importsounding: () => import("./Import_soundingresults.vue"),
34 Staging: () => import("./Staging.vue") 34 Staging: () => import("./Staging.vue")
35 }, 35 },
36 computed: { 36 computed: {
37 ...mapState("application", ["showSearchbarLastState", "showInContextBox"]), 37 ...mapState("application", ["showSearchbarLastState", "showInContextBox"]),
38 style() { 38 style() {