view client/src/components/Main.vue @ 1575:51f924cbac23

Feat: Importscheduler renamed to "unattended imports" We have now a prototypical user interface where the user is able to select whether or not he wishes an scheduling. If he chooses to, he is able to select simple/advanced scheduling and gets a wizward to help with setting up the cron string.
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 13 Dec 2018 13:30:02 +0100
parents 0ded4c56978e
children 16fb9667ddf8
line wrap: on
line source

<template>
  <div class="main d-flex flex-column">
    <Maplayer></Maplayer>
    <FairwayProfile></FairwayProfile>
  </div>
</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>
 */

import Maplayer from "./Maplayer";
import FairwayProfile from "./fairway/Fairwayprofile";

export default {
  name: "mainview",
  components: {
    Maplayer,
    FairwayProfile
  }
};
</script>