view client/src/components/PageNotFound.vue @ 4329:83eb99662a91

client: improve ability to test FW diagrams * Restructure code in fairwayavailability.js to seperate external data retrieval and adding the data into the store. Good side effects are that using a mutation for setting test data is easier and only one commit call is necessary, which means less clutter in the state history. * Adding an example how to use this for testing to docs/developers.md . * Bump copyright year for one file.
author Bernhard Reiter <bernhard@intevation.de>
date Wed, 04 Sep 2019 17:05:43 +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>