comparison client/src/components/Main.vue @ 3011:fc8fbea24568

client: moved map component, layer factory and styles to own subdirectory
author Markus Kottlaender <markus@intevation.de>
date Thu, 11 Apr 2019 12:14:01 +0200
parents 61f69e8919d3
children 083cd270bdfd
comparison
equal deleted inserted replaced
3010:293bdd05ffcd 3011:fc8fbea24568
119 import { mapState } from "vuex"; 119 import { mapState } from "vuex";
120 120
121 export default { 121 export default {
122 components: { 122 components: {
123 // all components that are supposed to be displayed in a pane must be registered here 123 // all components that are supposed to be displayed in a pane must be registered here
124 Maplayer: () => import("./Maplayer") 124 Map: () => import("./map/Map")
125 }, 125 },
126 computed: { 126 computed: {
127 ...mapState("application", ["panes", "paneMode"]) 127 ...mapState("application", ["panes", "paneMode"])
128 } 128 }
129 }; 129 };