comparison client/src/components/Main.vue @ 1558:0ded4c56978e

refac: component filestructure. remove admin/map hierarchy
author Thomas Junk <thomas.junk@intevation.de>
date Wed, 12 Dec 2018 09:22:20 +0100
parents client/src/components/map/Main.vue@b350b0b5cb6c
children 16fb9667ddf8
comparison
equal deleted inserted replaced
1557:62171cd9a42b 1558:0ded4c56978e
1 <template>
2 <div class="main d-flex flex-column">
3 <Maplayer></Maplayer>
4 <FairwayProfile></FairwayProfile>
5 </div>
6 </template>
7
8 <script>
9 /* This is Free Software under GNU Affero General Public License v >= 3.0
10 * without warranty, see README.md and license for details.
11 *
12 * SPDX-License-Identifier: AGPL-3.0-or-later
13 * License-Filename: LICENSES/AGPL-3.0.txt
14 *
15 * Copyright (C) 2018 by via donau
16 * – Österreichische Wasserstraßen-Gesellschaft mbH
17 * Software engineering by Intevation GmbH
18 *
19 * Author(s):
20 * Thomas Junk <thomas.junk@intevation.de>
21 */
22
23 import Maplayer from "./Maplayer";
24 import FairwayProfile from "./fairway/Fairwayprofile";
25
26 export default {
27 name: "mainview",
28 components: {
29 Maplayer,
30 FairwayProfile
31 }
32 };
33 </script>