comparison client/src/router.js @ 3134:ab00165540fe

available_fairway_depths: Component made visible At present there is development going on regarding panes, diagrams etc. For development purposes, the component is temporarily available under /fairwaydepth. Integration happens later.
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 30 Apr 2019 12:05:04 +0200
parents 1b8bb4f89227
children ec27ee21f7bc
comparison
equal deleted inserted replaced
3131:1a1ec4c98c98 3134:ab00165540fe
165 store.commit("application/showContextBox", true); 165 store.commit("application/showContextBox", true);
166 store.commit("application/contextBoxContent", "stretches"); 166 store.commit("application/contextBoxContent", "stretches");
167 store.commit("application/showSearchbar", true); 167 store.commit("application/showSearchbar", true);
168 next(); 168 next();
169 } 169 }
170 }
171 },
172 {
173 path: "/fairwaydepth",
174 name: "fairwaydepth",
175 component: () => import("./components/fairway/AvailableFairwayDepth"),
176 meta: {
177 requiresAuth: true
170 } 178 }
171 }, 179 },
172 { 180 {
173 path: "*", 181 path: "*",
174 component: () => import("./components/PageNotFound") 182 component: () => import("./components/PageNotFound")