view client/src/views/Main.vue @ 278:9c1dfadb53aa usermanagement

feat: usermanagement - route established and secured Added new route for prototypical implementation of usermanagement.
author Thomas Junk <thomas.junk@intevation.de>
date Mon, 30 Jul 2018 16:02:19 +0200
parents 5e95c62a7e74
children 6a29ad5a36cf
line wrap: on
line source

<template>
  <div class="main d-flex">
    <Sidebar v-bind:isOverlay="true"></Sidebar>
    <Map></Map>
  </div>
</template>

<style lang="scss">
.main {
  height: 100vh;
}

#map {
  background-color: #ffffff;
  width: 100%;
}
</style>

<script>
import Map from "../components/Map";
import Sidebar from "../components/Sidebar";
export default {
  name: "mainview",
  components: {
    Map,
    Sidebar
  }
};
</script>