view 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
line wrap: on
line source

<template>
  <div class="main d-flex flex-column">
    <Maplayer :lat="6155376" :long="1819178" :zoom="11"></Maplayer>
  </div>
</template>

<style lang="scss">
@import "../application/assets/application.scss";

.menubutton {
  margin-left: $small-offset;
}
</style>

<script>
import Maplayer from "../map/Maplayer";

export default {
  name: "mainview",
  components: {
    Maplayer
  }
};
</script>