view client/src/components/PageNotFound.vue @ 3680:0300282b9537

client: configuration: changed loading strategy Only load configuration values from backend when entering the main/map view or systemconfiguration page
author Markus Kottlaender <markus@intevation.de>
date Tue, 18 Jun 2019 12:02:18 +0200
parents 6c5364ff0abb
children
line wrap: on
line source

<template>
  <div class="main d-flex flex-row" style="position: relative;">
    <Spacer />
    <div class="my-auto mx-auto">
      <h1>
        <font-awesome-icon icon="frown-open" fixed-width />
        We are sorry. The ressource you requested could not be found.
      </h1>
    </div>
  </div>
</template>

<script>
export default {
  name: "pagenotfound",
  components: {
    Spacer: () => import("@/components/Spacer")
  }
};
</script>

<style></style>