comparison client/src/application/Main.vue @ 592:8e67604d972a

moved main.vue to application
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 07 Sep 2018 12:30:20 +0200
parents client/src/map/Mapview.vue@ef307bd6b5d8
children c4a4dc612191
comparison
equal deleted inserted replaced
591:d013fa5554cc 592:8e67604d972a
1 <template>
2 <div class="main d-flex flex-column">
3 <Maplayer :lat="6155376" :long="1819178" :zoom="11"></Maplayer>
4 </div>
5 </template>
6
7 <style lang="scss">
8 @import "../application/assets/application.scss";
9
10 .menubutton {
11 margin-left: $small-offset;
12 }
13 </style>
14
15 <script>
16 import Maplayer from "../map/Maplayer";
17
18 export default {
19 name: "mainview",
20 components: {
21 Maplayer
22 }
23 };
24 </script>