view client/src/components/Topbar.vue @ 543:b111b765b6cd

client: add hardwired WFS layer to map * As prototype add a getfeature WFS layer asking our own server for the fairways_dimensions. It has deactivate filter code.
author Bernhard Reiter <bernhard@intevation.de>
date Thu, 30 Aug 2018 17:07:35 +0200
parents 505656a9947f
children 06907c875077
line wrap: on
line source

<template>
    <div class="topbar shadow-sm d-flex flex-row justify-content-between">
        <div class="align-self-center">
            <i @click="toggleSidebar" class="menubutton fa fa-bars"></i>
        </div>
        <div class="">
            <h2>Topbar</h2>
        </div>
        <div>

        </div>
    </div>
</template>

<script>
export default {
  name: "topbar",
  methods: {
    toggleSidebar() {
      this.$store.commit("application/toggleSidebar");
    }
  }
};
</script>