comparison client/src/components/App.vue @ 3553:869505c5087b

client: fairway profile: close compare view with ESC key also added a notice at the top of the screen that indicates when ESC key can be used to either cancel drawing (line, polygon, crosscut) or to close the compare split view for two sounding results
author Markus Kottlaender <markus@intevation.de>
date Fri, 31 May 2019 14:32:24 +0200
parents ec27ee21f7bc
children 6ce80daf8413
comparison
equal deleted inserted replaced
3552:ffc8fb059d1a 3553:869505c5087b
26 <MapPopup /> 26 <MapPopup />
27 </div> 27 </div>
28 <router-view /> 28 <router-view />
29 <vue-snotify /> 29 <vue-snotify />
30 <Popup /> 30 <Popup />
31 <KeyboardHandler />
31 </div> 32 </div>
32 </template> 33 </template>
33 34
34 <style lang="sass" scoped> 35 <style lang="sass" scoped>
35 #app 36 #app
102 Contextbox: () => import("./Contextbox"), 103 Contextbox: () => import("./Contextbox"),
103 Toolbar: () => import("./toolbar/Toolbar"), 104 Toolbar: () => import("./toolbar/Toolbar"),
104 Popup: () => import("./Popup"), 105 Popup: () => import("./Popup"),
105 AvailableFairwayDepthDialogue: () => 106 AvailableFairwayDepthDialogue: () =>
106 import("./fairway/AvailableFairwayDepthDialogue.vue"), 107 import("./fairway/AvailableFairwayDepthDialogue.vue"),
107 MapPopup: () => import("./map/MapPopup") 108 MapPopup: () => import("./map/MapPopup"),
109 KeyboardHandler: () => import("./KeyboardHandler")
108 } 110 }
109 }; 111 };
110 </script> 112 </script>