view client/src/views/Main.vue @ 216:494a257e7715

Called schema prefixed sys_admin.create_user instead of create_user.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Tue, 24 Jul 2018 11:20:46 +0200
parents 5e95c62a7e74
children 9c1dfadb53aa
line wrap: on
line source

<template>
  <div class="main d-flex">
    <Sidebar></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>