view client/src/views/Main.vue @ 129:ee5a3dd8e972

Forgot to check if a db connection is already close when closing idle db connections.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 28 Jun 2018 16:45:01 +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>