view client/src/views/Main.vue @ 555:f66116b3a249

fix: Reset collapse state of sidebar
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 03 Sep 2018 12:57:33 +0200
parents 89bc8111563a
children
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 "../assets/application.scss";

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

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

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