comparison client/src/application/Main.vue @ 1053:82ae9cb56982 crossprofile

refac: removed properties from fairwayprofile Fairwayprofile has access to fairway store. Only things not directly read from store are now propagated as property.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 25 Oct 2018 13:11:09 +0200
parents 505ec57929aa
children 907321455f39
comparison
equal deleted inserted replaced
1052:e3f3e645792b 1053:82ae9cb56982
8 :zoom="11" 8 :zoom="11"
9 ></Maplayer> 9 ></Maplayer>
10 <div v-if="isSplitscreen" class="profile d-flex flex-row"> 10 <div v-if="isSplitscreen" class="profile d-flex flex-row">
11 <FairwayProfile 11 <FairwayProfile
12 :additionalSurveys="additionalSurveys" 12 :additionalSurveys="additionalSurveys"
13 :minAlt="minAlt"
14 :maxAlt="maxAlt"
15 :selectedWaterLevel="selectedWaterLevel"
16 :fairwayCoordinates="fairwayCoordinates"
17 :waterLevels="waterLevels"
18 :height="height" 13 :height="height"
19 :width="width" 14 :width="width"
20 :xScale="xAxis" 15 :xScale="xAxis"
21 :yScaleLeft="yAxisLeft" 16 :yScaleLeft="yAxisLeft"
22 :yScaleRight="yAxisRight" 17 :yScaleRight="yAxisRight"
23 :margin="margins" 18 :margin="margins"
24 :totalLength="totalLength"
25 ></FairwayProfile> 19 ></FairwayProfile>
26 </div> 20 </div>
27 </div> 21 </div>
28 </template> 22 </template>
29 23