view client/src/components/Main.vue @ 2552:2d2b7fdc0c01

client: make splitscreen only visible in map context
author Markus Kottlaender <markus@intevation.de>
date Fri, 08 Mar 2019 10:03:15 +0100
parents 9bf6b767a56a
children
line wrap: on
line source

<template>
  <Maplayer />
</template>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 * Markus Kottländer <markus.kottlaender@intevation.de>
 */

export default {
  name: "mainview",
  components: {
    Maplayer: () => import("./Maplayer")
  }
};
</script>